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