toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> _data = <String, dynamic>{};
  _data["productRefId"] = productRefId;
  _data["price"] = price;
  _data["currency"] = currency;
  _data["pricePeriod"] = pricePeriod;
  _data["label"] = label;
  _data["subtitleLabel"] = subtitleLabel;
  _data["description"] = description;
  return _data;
}