TargetHttpProxiesScopedList.fromJson constructor

TargetHttpProxiesScopedList.fromJson(
  1. Map json_
)

Implementation

TargetHttpProxiesScopedList.fromJson(core.Map json_)
    : this(
        targetHttpProxies: json_.containsKey('targetHttpProxies')
            ? (json_['targetHttpProxies'] as core.List)
                .map((value) => TargetHttpProxy.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        warning: json_.containsKey('warning')
            ? TargetHttpProxiesScopedListWarning.fromJson(
                json_['warning'] as core.Map<core.String, core.dynamic>)
            : null,
      );