copyWith method

WebApiModulesReportsBillingBillingStatementReportBillingStatementReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. bool? includeNoCharge,
  4. bool? includePaidInvoices,
  5. bool? includeZeroBalance,
  6. bool? paymentsThroughToday,
  7. bool? hidePaymentDetails,
  8. String? officeLocationId,
  9. String? dealStatusId,
  10. String? dealTypeId,
  11. String? customerId,
  12. String? dealId,
  13. String? customReportLayoutId,
  14. bool? isSummary,
  15. bool? includeSubHeadingsAndSubTotals,
  16. bool? includeIdColumns,
  17. String? locale,
  18. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsBillingBillingStatementReportBillingStatementReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        bool? includeNoCharge,
        bool? includePaidInvoices,
        bool? includeZeroBalance,
        bool? paymentsThroughToday,
        bool? hidePaymentDetails,
        String? officeLocationId,
        String? dealStatusId,
        String? dealTypeId,
        String? customerId,
        String? dealId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsBillingBillingStatementReportBillingStatementReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      includeNoCharge: includeNoCharge ?? this.includeNoCharge,
      includePaidInvoices: includePaidInvoices ?? this.includePaidInvoices,
      includeZeroBalance: includeZeroBalance ?? this.includeZeroBalance,
      paymentsThroughToday: paymentsThroughToday ?? this.paymentsThroughToday,
      hidePaymentDetails: hidePaymentDetails ?? this.hidePaymentDetails,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      dealStatusId: dealStatusId ?? this.dealStatusId,
      dealTypeId: dealTypeId ?? this.dealTypeId,
      customerId: customerId ?? this.customerId,
      dealId: dealId ?? this.dealId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}