copyWith method

WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderResponse copyWith({
  1. String? originalShowId,
  2. String? dealDescription,
  3. int? status,
  4. String? message,
})

Implementation

WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderResponse copyWith({
  String? originalShowId,
  String? dealDescription,
  int? status,
  String? message,
}) {
  return WebApiModulesInventoryRentalInventorySetBrochureUpdateOrderResponse(
    originalShowId: originalShowId ?? this.originalShowId,
    dealDescription: dealDescription ?? this.dealDescription,
    status: status ?? this.status,
    message: message ?? this.message,
  );
}