RejectConsentRequest.fromJson constructor

RejectConsentRequest.fromJson(
  1. Map json_
)

Implementation

RejectConsentRequest.fromJson(core.Map json_)
    : this(
        consentArtifact: json_.containsKey('consentArtifact')
            ? json_['consentArtifact'] as core.String
            : null,
      );