copyWith method
WebApiModulesReportsOrderReportsQuikActivityReportQuikActivityReportRequest
copyWith({
- DateTime? fromDate,
- DateTime? toDate,
- List<
FwStandardModelsSelectedCheckBoxListItem> ? orderType, - String? warehouseId,
- String? departmentId,
- String? activityTypeId,
- String? inventoryTypeId,
- String? agentId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields,
Implementation
WebApiModulesReportsOrderReportsQuikActivityReportQuikActivityReportRequest
copyWith(
{DateTime? fromDate,
DateTime? toDate,
List<FwStandardModelsSelectedCheckBoxListItem>? orderType,
String? warehouseId,
String? departmentId,
String? activityTypeId,
String? inventoryTypeId,
String? agentId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields}) {
return WebApiModulesReportsOrderReportsQuikActivityReportQuikActivityReportRequest(
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
orderType: orderType ?? this.orderType,
warehouseId: warehouseId ?? this.warehouseId,
departmentId: departmentId ?? this.departmentId,
activityTypeId: activityTypeId ?? this.activityTypeId,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
agentId: agentId ?? this.agentId,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields);
}