toJson method

Map<String, dynamic> toJson()

Implementation

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