toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final locations = this.locations;
  final numberOfItems = this.numberOfItems;
  final postalCodeGroupNames = this.postalCodeGroupNames;
  final prices = this.prices;
  final weights = this.weights;
  return {
    'locations': ?locations,
    'numberOfItems': ?numberOfItems,
    'postalCodeGroupNames': ?postalCodeGroupNames,
    'prices': ?prices,
    'weights': ?weights,
  };
}