SelectedCartoffers.fromJson constructor

SelectedCartoffers.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SelectedCartoffers.fromJson(Map<String, dynamic> json) {
  pog = json['pog'];
  id = json['id'];
  isAttached = json['isAttached'];
  assetId = json['assetId'];
  warrantyPeriod = json['warrantyPeriod'];
  productCode = json['productCode'];
  ownerId = json['ownerId'];
  isBundleOffer = json['isBundleOffer'];
  replaceWarranty = json['replaceWarranty'];
  armProductId = json['armProductId'];
  isHasInventoryDevice = json['isHasInventoryDevice'];
  imei = json['imei'];
  subProducts = json['subProducts'];
  returnAssetStatus = json['returnAssetStatus'];
  quantity = json['quantity'];
  parentId = json['parentId'];
  updatedOverridePrice = json['updatedOverridePrice'];
  brandName = json['brandName'];
  recommended = json['recommended'];
  autoRefill = json['autoRefill'];
  groupQuantity = json['groupQuantity'];
  senderMinDetails = json['senderMinDetails'];
  receiverMinDetails = json['receiverMinDetails'];
  startRange = json['startRange'];
  endRange = json['endRange'];
}