copyWith method

WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderRequest copyWith({
  1. String? brochureId,
  2. String? inventoryId,
  3. String? orderId,
})

Implementation

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