GoogleChromePolicyVersionsV1DefineNetworkRequest.fromJson constructor

GoogleChromePolicyVersionsV1DefineNetworkRequest.fromJson(
  1. Map json_
)

Implementation

GoogleChromePolicyVersionsV1DefineNetworkRequest.fromJson(core.Map json_)
  : this(
      name: json_['name'] as core.String?,
      settings: (json_['settings'] as core.List?)
          ?.map(
            (value) => GoogleChromePolicyVersionsV1NetworkSetting.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      targetResource: json_['targetResource'] as core.String?,
    );