toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final categoryIds = this.categoryIds;
final creationDateTime = this.creationDateTime;
final emailAddress = this.emailAddress;
final fellowships = this.fellowships;
final firstName = this.firstName;
final id = this.id;
final jobTitle = this.jobTitle;
final languagesSpoken = this.languagesSpoken;
final lastName = this.lastName;
final middleName = this.middleName;
final nationalProviderIdNumber = this.nationalProviderIdNumber;
final residencies = this.residencies;
final resourceName = this.resourceName;
final status = this.status;
final type = this.type;
final universityDegrees = this.universityDegrees;
final yearStartedPracticing = this.yearStartedPracticing;
return {
'categoryIds': ?categoryIds,
'creationDateTime': ?creationDateTime,
'emailAddress': ?emailAddress,
'fellowships': ?fellowships,
'firstName': ?firstName,
'id': ?id,
'jobTitle': ?jobTitle,
'languagesSpoken': ?languagesSpoken,
'lastName': ?lastName,
'middleName': ?middleName,
'nationalProviderIdNumber': ?nationalProviderIdNumber,
'residencies': ?residencies,
'resourceName': ?resourceName,
'status': ?status,
'type': ?type,
'universityDegrees': ?universityDegrees,
'yearStartedPracticing': ?yearStartedPracticing,
};
}