copyWith method
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,
})
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,
);
}