copyWith method

WebApiModulesInventoryInventoryReceiptSetBrochureHeaderResponse copyWith({
  1. String? brochureId,
  2. String? orderId,
  3. String? orderNumber,
  4. String? orderDescription,
  5. String? dealId,
  6. String? deal,
  7. String? dealNumber,
})

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);
}