copyWith method
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,
);
}