copyWith method
WebApiModulesReportsOrderReportsQuoteOrderMasterReportQuoteOrderMasterReportRequest
copyWith({
- DateTime? fromDate,
- DateTime? toDate,
- String? dateType,
- bool? filterDates,
- String? officeLocationId,
- String? departmentId,
- String? customerId,
- String? dealTypeId,
- String? dealStatusId,
- String? dealId,
- String? agentId,
- List<
FwStandardModelsSelectedCheckBoxListItem> ? orderType, - List<
FwStandardModelsSelectedCheckBoxListItem> ? quoteStatus, - List<
FwStandardModelsSelectedCheckBoxListItem> ? orderStatus, - List<
FwStandardModelsCheckBoxListItem> ? sortBy, - String? userDepartmentId,
- String? userLocationId,
- String? userWarehouseId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields, - String? reportName,
- bool? useEmailTemplate,
Implementation
WebApiModulesReportsOrderReportsQuoteOrderMasterReportQuoteOrderMasterReportRequest
copyWith(
{DateTime? fromDate,
DateTime? toDate,
String? dateType,
bool? filterDates,
String? officeLocationId,
String? departmentId,
String? customerId,
String? dealTypeId,
String? dealStatusId,
String? dealId,
String? agentId,
List<FwStandardModelsSelectedCheckBoxListItem>? orderType,
List<FwStandardModelsSelectedCheckBoxListItem>? quoteStatus,
List<FwStandardModelsSelectedCheckBoxListItem>? orderStatus,
List<FwStandardModelsCheckBoxListItem>? sortBy,
String? userDepartmentId,
String? userLocationId,
String? userWarehouseId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields,
String? reportName,
bool? useEmailTemplate}) {
return WebApiModulesReportsOrderReportsQuoteOrderMasterReportQuoteOrderMasterReportRequest(
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
dateType: dateType ?? this.dateType,
filterDates: filterDates ?? this.filterDates,
officeLocationId: officeLocationId ?? this.officeLocationId,
departmentId: departmentId ?? this.departmentId,
customerId: customerId ?? this.customerId,
dealTypeId: dealTypeId ?? this.dealTypeId,
dealStatusId: dealStatusId ?? this.dealStatusId,
dealId: dealId ?? this.dealId,
agentId: agentId ?? this.agentId,
orderType: orderType ?? this.orderType,
quoteStatus: quoteStatus ?? this.quoteStatus,
orderStatus: orderStatus ?? this.orderStatus,
sortBy: sortBy ?? this.sortBy,
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);
}