copyWith method
Implementation
WebApiModulesInventoryInventoryReceiptSetBrochureHeaderResponse copyWith(
{String? brochureId,
String? orderId,
String? orderNumber,
String? orderDescription,
String? dealId,
String? deal,
String? dealNumber}) {
return WebApiModulesInventoryInventoryReceiptSetBrochureHeaderResponse(
brochureId: brochureId ?? this.brochureId,
orderId: orderId ?? this.orderId,
orderNumber: orderNumber ?? this.orderNumber,
orderDescription: orderDescription ?? this.orderDescription,
dealId: dealId ?? this.dealId,
deal: deal ?? this.deal,
dealNumber: dealNumber ?? this.dealNumber);
}