QueryContent.fromJson constructor

QueryContent.fromJson(
  1. 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,
      );