AddAttestationRuleRequest.fromJson constructor

AddAttestationRuleRequest.fromJson(
  1. Map json_
)

Implementation

AddAttestationRuleRequest.fromJson(core.Map json_)
  : this(
      attestationRule:
          json_.containsKey('attestationRule')
              ? AttestationRule.fromJson(
                json_['attestationRule']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );