GoogleCloudPolicytroubleshooterIamV3AllowPolicyExplanation.fromJson constructor

GoogleCloudPolicytroubleshooterIamV3AllowPolicyExplanation.fromJson(
  1. Map json_
)

Implementation

GoogleCloudPolicytroubleshooterIamV3AllowPolicyExplanation.fromJson(
  core.Map json_,
) : this(
      allowAccessState: json_['allowAccessState'] as core.String?,
      explainedPolicies: (json_['explainedPolicies'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudPolicytroubleshooterIamV3ExplainedAllowPolicy.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      relevance: json_['relevance'] as core.String?,
    );