toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final country = this.country;
final lsfType = this.lsfType;
final pickupTypes = this.pickupTypes;
return {
'country': ?country,
'lsfType': ?lsfType,
'pickupTypes': ?pickupTypes,
};
}