getNoProxy function

String? getNoProxy([
  1. EnvLike? env
])

Get the NO_PROXY environment variable value.

Implementation

String? getNoProxy([EnvLike? env]) {
  final e = env ?? Platform.environment;
  return e['no_proxy'] ?? e['NO_PROXY'];
}