RevokeConsentRequest.fromJson constructor

RevokeConsentRequest.fromJson(
  1. Map json_
)

Implementation

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