copyWith method
Implementation
WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderRequest copyWith({
String? brochureId,
String? inventoryId,
String? orderId,
}) {
return WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderRequest(
brochureId: brochureId ?? this.brochureId,
inventoryId: inventoryId ?? this.inventoryId,
orderId: orderId ?? this.orderId,
);
}