copyWith method
WebApiModulesReportsBillingProjectManagerBillingReportProjectManagerBillingReportRequest
copyWith({
- DateTime? fromDate,
- DateTime? toDate,
- String? dateType,
- bool? includeNoCharge,
- String? officeLocationId,
- String? departmentId,
- String? projectManagerId,
- String? customerId,
- String? dealId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields,
Implementation
WebApiModulesReportsBillingProjectManagerBillingReportProjectManagerBillingReportRequest
copyWith(
{DateTime? fromDate,
DateTime? toDate,
String? dateType,
bool? includeNoCharge,
String? officeLocationId,
String? departmentId,
String? projectManagerId,
String? customerId,
String? dealId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields}) {
return WebApiModulesReportsBillingProjectManagerBillingReportProjectManagerBillingReportRequest(
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
dateType: dateType ?? this.dateType,
includeNoCharge: includeNoCharge ?? this.includeNoCharge,
officeLocationId: officeLocationId ?? this.officeLocationId,
departmentId: departmentId ?? this.departmentId,
projectManagerId: projectManagerId ?? this.projectManagerId,
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);
}