toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consentRejected = this.consentRejected;
  final pending = this.pending;
  final success = this.success;
  final uriConsentRequired = this.uriConsentRequired;
  return {
    'consentRejected': ?consentRejected,
    'pending': ?pending,
    'success': ?success,
    'uriConsentRequired': ?uriConsentRequired,
  };
}