toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final email = this.email;
final profileId = this.profileId;
final profileOrgUnitId = this.profileOrgUnitId;
final profilePermanentId = this.profilePermanentId;
return {
'email': ?email,
'profileId': ?profileId,
'profileOrgUnitId': ?profileOrgUnitId,
'profilePermanentId': ?profilePermanentId,
};
}