toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['totalWeight'] = this.totalWeight;
data['cartCount'] = this.cartCount;
data['totalPrice'] = this.totalPrice;
data['totalGstPrice'] = this.totalGstPrice;
data['totalWithOutGstPrice'] = this.totalWithOutGstPrice;
data['totalWithOutSCGstPrice'] = this.totalWithOutSCGstPrice;
data['totalMrp'] = this.totalMrp;
data['__typename'] = this.sTypename;
return data;
}