toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['productId'] = this.productId;
  data['qty'] = this.qty;
  data['skuId'] = this.skuId;
  data['userId'] = this.userId;
  data['type'] = this.type;
  data['isMultiple'] = this.isMultiple;
  data['isCustomizable'] = this.isCustomizable;
  data['skus'] = this.skus;
  return data;
}