copyWith method
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);
}