toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['subscriptionRoundUnit'] = subscriptionRoundUnit;
map['subscriptionRoundValue'] = subscriptionRoundValue;
map['introductoryPaymentMode'] = introductoryPaymentMode;
map['introductoryRoundUnit'] = introductoryRoundUnit;
map['promotionalRoundValue'] = promotionalRoundValue;
map['isEligibleForIntroOffer'] = isEligibleForIntroOffer;
map['storeCurrency'] = storeCurrency;
map['isEligiblePromotionalOffer'] = isEligiblePromotionalOffer;
map['introductoryRoundValue'] = introductoryRoundValue;
map['promotionalOfferPrice'] = promotionalOfferPrice;
map['storePrice'] = storePrice;
map['promotionalRoundUnit'] = promotionalRoundUnit;
map['introductoryOfferPrice'] = introductoryOfferPrice;
return map;
}