toJson method

Map<String, dynamic> toJson()

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