copyWith method

WebApiModulesReportsContractReportsContractRevisionReportContractRevisionReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. bool? filterDates,
  4. int? daysChanged,
  5. String? officeLocationId,
  6. String? departmentId,
  7. String? userId,
  8. String? dealId,
  9. List<FwStandardModelsSelectedCheckBoxListItem>? revisionTypes,
  10. String? customReportLayoutId,
  11. bool? isSummary,
  12. bool? includeSubHeadingsAndSubTotals,
  13. bool? includeIdColumns,
  14. String? locale,
  15. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsContractReportsContractRevisionReportContractRevisionReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        bool? filterDates,
        int? daysChanged,
        String? officeLocationId,
        String? departmentId,
        String? userId,
        String? dealId,
        List<FwStandardModelsSelectedCheckBoxListItem>? revisionTypes,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsContractReportsContractRevisionReportContractRevisionReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      filterDates: filterDates ?? this.filterDates,
      daysChanged: daysChanged ?? this.daysChanged,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      departmentId: departmentId ?? this.departmentId,
      userId: userId ?? this.userId,
      dealId: dealId ?? this.dealId,
      revisionTypes: revisionTypes ?? this.revisionTypes,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}