BatchGetEffectiveIamPoliciesResponse.fromJson constructor
BatchGetEffectiveIamPoliciesResponse.fromJson(
- Map json_
Implementation
BatchGetEffectiveIamPoliciesResponse.fromJson(core.Map json_)
: this(
policyResults: (json_['policyResults'] as core.List?)
?.map((value) => EffectiveIamPolicy.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);