GoogleChromePolicyVersionsV1ResolveResponse.fromJson constructor

GoogleChromePolicyVersionsV1ResolveResponse.fromJson(
  1. Map json_
)

Implementation

GoogleChromePolicyVersionsV1ResolveResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_['nextPageToken'] as core.String?,
        resolvedPolicies: (json_['resolvedPolicies'] as core.List?)
            ?.map((value) =>
                GoogleChromePolicyVersionsV1ResolvedPolicy.fromJson(
                    value as core.Map<core.String, core.dynamic>))
            .toList(),
      );