toJson method

Map<String, dynamic> toJson()

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