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