toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (emailAddress != null) 'emailAddress': emailAddress!,
if (familyName != null) 'familyName': familyName!,
if (givenName != null) 'givenName': givenName!,
if (profileId != null) 'profileId': profileId!,
if (profileName != null) 'profileName': profileName!,
};