toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customLocation = this.customLocation;
final homeOffice = this.homeOffice;
final officeLocation = this.officeLocation;
final type = this.type;
return {
'customLocation': ?customLocation,
'homeOffice': ?homeOffice,
'officeLocation': ?officeLocation,
'type': ?type,
};
}