copyWith method

WebApiModulesReportsOrderReportsQuikActivityReportQuikActivityReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. List<FwStandardModelsSelectedCheckBoxListItem>? orderType,
  4. String? warehouseId,
  5. String? departmentId,
  6. String? activityTypeId,
  7. String? inventoryTypeId,
  8. String? agentId,
  9. String? userDepartmentId,
  10. String? userLocationId,
  11. String? userWarehouseId,
  12. String? customReportLayoutId,
  13. bool? isSummary,
  14. bool? includeSubHeadingsAndSubTotals,
  15. bool? includeIdColumns,
  16. String? locale,
  17. List<FwStandardModelsCheckBoxListItem>? excelfields,
  18. String? reportName,
  19. bool? useEmailTemplate,
})

Implementation

WebApiModulesReportsOrderReportsQuikActivityReportQuikActivityReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        List<FwStandardModelsSelectedCheckBoxListItem>? orderType,
        String? warehouseId,
        String? departmentId,
        String? activityTypeId,
        String? inventoryTypeId,
        String? agentId,
        String? userDepartmentId,
        String? userLocationId,
        String? userWarehouseId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields,
        String? reportName,
        bool? useEmailTemplate}) {
  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,
      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);
}