toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cashbackForFutureUse = this.cashbackForFutureUse;
  final loyaltyPoints = this.loyaltyPoints;
  final memberPriceEffectiveDate = this.memberPriceEffectiveDate;
  final price = this.price;
  final programLabel = this.programLabel;
  final shippingLabel = this.shippingLabel;
  final tierLabel = this.tierLabel;
  return {
    'cashbackForFutureUse': ?cashbackForFutureUse,
    'loyaltyPoints': ?loyaltyPoints,
    'memberPriceEffectiveDate': ?memberPriceEffectiveDate,
    'price': ?price,
    'programLabel': ?programLabel,
    'shippingLabel': ?shippingLabel,
    'tierLabel': ?tierLabel,
  };
}