toMap method
Implementation
Map<String, dynamic> toMap() {
return {
//'identityToken': this.identityToken,
//'authorizationCode': this.authorizationCode,
'state': this.state,
'user': this.user,
'authorizedScopes': this.authorizedScopes,
'fullName': this.fullName != null ? this.fullName!.toMap() : '',
'email': this.email,
'realUserStatus': this.realUserStatus,
};
}