toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['sku'] = this.sku;
  data['setSkuPrice'] = this.setSkuPrice;
  data['setQuantity'] = this.setQuantity;
  data['skuId'] = this.skuId;
  data['styleCode'] = this.styleCode;
  data['variationType'] = this.variationType;
  data['b2cSellingPrice'] = this.b2cSellingPrice;
  data['b2bSellingPrice'] = this.b2bSellingPrice;
  data['mrp'] = this.mrp;
  data['discount'] = this.discount;
  data['productName'] = this.productName;
  data['INTsku'] = this.iNTsku;
  data['sizeAttributeSettingId'] = this.sizeAttributeSettingId;
  data['sizeAttributeSettingFieldValueId'] =
      this.sizeAttributeSettingFieldValueId;
  data['colorAttributeSettingId'] = this.colorAttributeSettingId;
  data['colorAttributeSettingFieldValueId'] =
      this.colorAttributeSettingFieldValueId;
  data['gstTypeId'] = this.gstTypeId;
  data['gstValue'] = this.gstValue;
  data['colorAttributeFieldValue'] = this.colorAttributeFieldValue;
  data['sizeAttributeFieldValue'] = this.sizeAttributeFieldValue;
  data['colorAttributeName'] = this.colorAttributeName;
  data['sizeAttributeName'] = this.sizeAttributeName;
  data['__typename'] = this.sTypename;
  return data;
}