runZoned<R> method Null safety
- R body(
- {HttpClient createHttpClient( ),
- String findProxyFromEnvironment( )}
Runs body
in a fresh Zone using the provided overrides.
Implementation
static R runZoned<R>(R body(),
{HttpClient Function(SecurityContext?)? createHttpClient,
String Function(Uri uri, Map<String, String>? environment)?
findProxyFromEnvironment}) {
HttpOverrides overrides =
new _HttpOverridesScope(createHttpClient, findProxyFromEnvironment);
return _asyncRunZoned<R>(body,
zoneValues: {_httpOverridesToken: overrides});
}