copyWith method

WebApiModulesInventoryInventoryChangeICodeRequest copyWith({
  1. String? itemId,
  2. String? inventoryId,
})

Implementation

WebApiModulesInventoryInventoryChangeICodeRequest copyWith(
    {String? itemId, String? inventoryId}) {
  return WebApiModulesInventoryInventoryChangeICodeRequest(
      itemId: itemId ?? this.itemId,
      inventoryId: inventoryId ?? this.inventoryId);
}