toJson method
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,
};
}