copyWith method

WebApiModulesReportsBillingInvoiceDiscountReportInvoiceDiscountReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. String? dateType,
  4. int? discountPercent,
  5. String? officeLocationId,
  6. String? departmentId,
  7. String? customerId,
  8. String? dealId,
  9. String? discountReasonId,
  10. String? customReportLayoutId,
  11. bool? isSummary,
  12. bool? includeSubHeadingsAndSubTotals,
  13. bool? includeIdColumns,
  14. String? locale,
  15. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsBillingInvoiceDiscountReportInvoiceDiscountReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        String? dateType,
        int? discountPercent,
        String? officeLocationId,
        String? departmentId,
        String? customerId,
        String? dealId,
        String? discountReasonId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsBillingInvoiceDiscountReportInvoiceDiscountReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      dateType: dateType ?? this.dateType,
      discountPercent: discountPercent ?? this.discountPercent,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      departmentId: departmentId ?? this.departmentId,
      customerId: customerId ?? this.customerId,
      dealId: dealId ?? this.dealId,
      discountReasonId: discountReasonId ?? this.discountReasonId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}