copyWith method
Implementation
WebApiModulesHomeControlsOrderItemCompleteKitOption copyWith(
{String? inventoryId,
String? inventoryPackageInventoryId,
int? quantity}) {
return WebApiModulesHomeControlsOrderItemCompleteKitOption(
inventoryId: inventoryId ?? this.inventoryId,
inventoryPackageInventoryId:
inventoryPackageInventoryId ?? this.inventoryPackageInventoryId,
quantity: quantity ?? this.quantity);
}