IamPolicyAnalysisState.fromJson constructor

IamPolicyAnalysisState.fromJson(
  1. Map json_
)

Implementation

IamPolicyAnalysisState.fromJson(core.Map json_)
    : this(
        cause:
            json_.containsKey('cause') ? json_['cause'] as core.String : null,
        code: json_.containsKey('code') ? json_['code'] as core.String : null,
      );