toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['pictureUrl'] = this.pictureUrl;
  data['colorCode'] = this.colorCode;
  data['shopInvoiceUniqueId'] = this.shopInvoiceUniqueId;
  data['currency'] = this.currency;
  data['proId'] = this.proId;
  data['price'] = this.price;
  data['commissionId'] = this.commissionId;
  data['qr'] = this.qr;
  data['purchasedAt'] = this.purchasedAt;
  data['paymentStatus'] = this.paymentStatus;
  return data;
}