copyWith method
WebApiModulesReportsDealReportsDealInvoiceDetailReportDealInvoiceDetailReportRequest
copyWith({
- DateTime? fromDate,
- DateTime? toDate,
- String? dateType,
- bool? includeNoCharge,
- bool? deductVendorItemCost,
- String? officeLocationId,
- String? departmentId,
- String? customerId,
- String? dealId,
- String? noCharge,
- String? billedHiatus,
- String? billableFlat,
- List<
FwStandardModelsSelectedCheckBoxListItem> ? statuses, - String? userDepartmentId,
- String? userLocationId,
- String? userWarehouseId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields, - String? reportName,
- bool? useEmailTemplate,
Implementation
WebApiModulesReportsDealReportsDealInvoiceDetailReportDealInvoiceDetailReportRequest
copyWith(
{DateTime? fromDate,
DateTime? toDate,
String? dateType,
bool? includeNoCharge,
bool? deductVendorItemCost,
String? officeLocationId,
String? departmentId,
String? customerId,
String? dealId,
String? noCharge,
String? billedHiatus,
String? billableFlat,
List<FwStandardModelsSelectedCheckBoxListItem>? statuses,
String? userDepartmentId,
String? userLocationId,
String? userWarehouseId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields,
String? reportName,
bool? useEmailTemplate}) {
return WebApiModulesReportsDealReportsDealInvoiceDetailReportDealInvoiceDetailReportRequest(
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
dateType: dateType ?? this.dateType,
includeNoCharge: includeNoCharge ?? this.includeNoCharge,
deductVendorItemCost: deductVendorItemCost ?? this.deductVendorItemCost,
officeLocationId: officeLocationId ?? this.officeLocationId,
departmentId: departmentId ?? this.departmentId,
customerId: customerId ?? this.customerId,
dealId: dealId ?? this.dealId,
noCharge: noCharge ?? this.noCharge,
billedHiatus: billedHiatus ?? this.billedHiatus,
billableFlat: billableFlat ?? this.billableFlat,
statuses: statuses ?? this.statuses,
userDepartmentId: userDepartmentId ?? this.userDepartmentId,
userLocationId: userLocationId ?? this.userLocationId,
userWarehouseId: userWarehouseId ?? this.userWarehouseId,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields,
reportName: reportName ?? this.reportName,
useEmailTemplate: useEmailTemplate ?? this.useEmailTemplate);
}