copyWith method

WebApiModulesInventoryInventoryCopyInventoryRequest copyWith({
  1. String? inventoryId,
  2. String? newICode,
  3. String? newDescription,
})

Implementation

WebApiModulesInventoryInventoryCopyInventoryRequest copyWith(
    {String? inventoryId, String? newICode, String? newDescription}) {
  return WebApiModulesInventoryInventoryCopyInventoryRequest(
      inventoryId: inventoryId ?? this.inventoryId,
      newICode: newICode ?? this.newICode,
      newDescription: newDescription ?? this.newDescription);
}