toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final absoluteDiscounts = this.absoluteDiscounts;
  final free = this.free;
  final otherRegionsPrices = this.otherRegionsPrices;
  final relativeDiscount = this.relativeDiscount;
  return {
    'absoluteDiscounts': ?absoluteDiscounts,
    'free': ?free,
    'otherRegionsPrices': ?otherRegionsPrices,
    'relativeDiscount': ?relativeDiscount,
  };
}