copyWith method
Implementation
WebApiModulesReportsBillingCreateInvoiceProcessReportCreateInvoiceProcessReportRequest
copyWith(
{String? invoiceCreationBatchId,
bool? exceptionsOnly,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields}) {
return WebApiModulesReportsBillingCreateInvoiceProcessReportCreateInvoiceProcessReportRequest(
invoiceCreationBatchId:
invoiceCreationBatchId ?? this.invoiceCreationBatchId,
exceptionsOnly: exceptionsOnly ?? this.exceptionsOnly,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields);
}