copyWith method

WebApiModulesInventorySetQcSetQcItemResponse copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. List<String>? itemIds,
  5. List<String>? descriptions,
  6. List<String>? iCodes,
  7. List<bool>? setQcReqds,
  8. List<String>? inventoryIds,
  9. int? successCount,
  10. int? failCount,
})

Implementation

WebApiModulesInventorySetQcSetQcItemResponse copyWith({
  int? status,
  bool? success,
  String? msg,
  List<String>? itemIds,
  List<String>? descriptions,
  List<String>? iCodes,
  List<bool>? setQcReqds,
  List<String>? inventoryIds,
  int? successCount,
  int? failCount,
}) {
  return WebApiModulesInventorySetQcSetQcItemResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    itemIds: itemIds ?? this.itemIds,
    descriptions: descriptions ?? this.descriptions,
    iCodes: iCodes ?? this.iCodes,
    setQcReqds: setQcReqds ?? this.setQcReqds,
    inventoryIds: inventoryIds ?? this.inventoryIds,
    successCount: successCount ?? this.successCount,
    failCount: failCount ?? this.failCount,
  );
}