copyWith method

WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest copyWith({
  1. String? orderId,
  2. String? rentalValue,
  3. bool? printZeroExtended,
  4. String? customReportLayoutId,
  5. bool? isSummary,
  6. bool? includeSubHeadingsAndSubTotals,
  7. bool? includeIdColumns,
  8. String? locale,
  9. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest
    copyWith(
        {String? orderId,
        String? rentalValue,
        bool? printZeroExtended,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest(
      orderId: orderId ?? this.orderId,
      rentalValue: rentalValue ?? this.rentalValue,
      printZeroExtended: printZeroExtended ?? this.printZeroExtended,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}