copyWith method

WebApiModulesReportsCrewReportsCrewSignInReportCrewSignInReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. String? officeLocationId,
  4. String? departmentId,
  5. String? customerId,
  6. String? dealId,
  7. String? orderId,
  8. String? customReportLayoutId,
  9. bool? isSummary,
  10. bool? includeSubHeadingsAndSubTotals,
  11. bool? includeIdColumns,
  12. String? locale,
  13. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsCrewReportsCrewSignInReportCrewSignInReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        String? officeLocationId,
        String? departmentId,
        String? customerId,
        String? dealId,
        String? orderId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsCrewReportsCrewSignInReportCrewSignInReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      departmentId: departmentId ?? this.departmentId,
      customerId: customerId ?? this.customerId,
      dealId: dealId ?? this.dealId,
      orderId: orderId ?? this.orderId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}