toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final address = this.address;
final androidAppLink = this.androidAppLink;
final contextualKeywords = this.contextualKeywords;
final description = this.description;
final imageUrl = this.imageUrl;
final iosAppLink = this.iosAppLink;
final iosAppStoreId = this.iosAppStoreId;
final jobCategory = this.jobCategory;
final jobId = this.jobId;
final jobSubtitle = this.jobSubtitle;
final jobTitle = this.jobTitle;
final locationId = this.locationId;
final salary = this.salary;
final similarJobIds = this.similarJobIds;
return {
'address': ?address,
'androidAppLink': ?androidAppLink,
'contextualKeywords': ?contextualKeywords,
'description': ?description,
'imageUrl': ?imageUrl,
'iosAppLink': ?iosAppLink,
'iosAppStoreId': ?iosAppStoreId,
'jobCategory': ?jobCategory,
'jobId': ?jobId,
'jobSubtitle': ?jobSubtitle,
'jobTitle': ?jobTitle,
'locationId': ?locationId,
'salary': ?salary,
'similarJobIds': ?similarJobIds,
};
}