rawValue property
Returns the raw string value for native communication.
Implementation
String get rawValue {
switch (this) {
case IaCardLinkConsentStatus.showConsent:
return 'SHOW_CONSENT';
case IaCardLinkConsentStatus.consentAccepted:
return 'CONSENT_ACCEPTED';
case IaCardLinkConsentStatus.consentDeclined:
return 'CONSENT_DECLINED';
}
}