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