toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consentNonce = this.consentNonce;
  final userId = this.userId;
  final userIdValidationState = this.userIdValidationState;
  return {
    'consentNonce': ?consentNonce,
    'userId': ?userId,
    'userIdValidationState': ?userIdValidationState,
  };
}