toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['totalPrice'] = this.totalPrice;
  data['totalGstPrice'] = this.totalGstPrice;
  data['totalWithOutGstPrice'] = this.totalWithOutGstPrice;
  data['totalWithOutSCGstPrice'] = this.totalWithOutSCGstPrice;
  data['totalMrp'] = this.totalMrp;
  data['shippingPrice'] = this.shippingPrice;
  data['shippingGstPrice'] = this.shippingGstPrice;
  data['shippingCgstPrice'] = this.shippingCgstPrice;
  data['shippingSgstPrice'] = this.shippingSgstPrice;
  data['resellerPrice'] = this.resellerPrice;
  data['__typename'] = this.sTypename;
  return data;
}