copyWith method

WebApiModulesInventoryPhysicalInventoryPhysicalInventoryUncountSerialItemRequest copyWith({
  1. String? physicalInventoryId,
  2. int? physicalInventoryItemId,
})

Implementation

WebApiModulesInventoryPhysicalInventoryPhysicalInventoryUncountSerialItemRequest
    copyWith({String? physicalInventoryId, int? physicalInventoryItemId}) {
  return WebApiModulesInventoryPhysicalInventoryPhysicalInventoryUncountSerialItemRequest(
      physicalInventoryId: physicalInventoryId ?? this.physicalInventoryId,
      physicalInventoryItemId:
          physicalInventoryItemId ?? this.physicalInventoryItemId);
}