toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final fulfillmentTypes = this.fulfillmentTypes;
  final placeId = this.placeId;
  final priceInfo = this.priceInfo;
  return {
    'attributes': ?attributes,
    'fulfillmentTypes': ?fulfillmentTypes,
    'placeId': ?placeId,
    'priceInfo': ?priceInfo,
  };
}