QueryContent.fromJson constructor
      
      QueryContent.fromJson(
    
    
- Map json_
Implementation
QueryContent.fromJson(core.Map json_)
    : this(
        iamPolicyAnalysisQuery: json_.containsKey('iamPolicyAnalysisQuery')
            ? IamPolicyAnalysisQuery.fromJson(json_['iamPolicyAnalysisQuery']
                as core.Map<core.String, core.dynamic>)
            : null,
      );