copyWith method
FdcDataSetOperationOptions
copyWith({
- FdcDataSetOperationExecutionMode? sortExecutionMode,
- int? isolateSortThreshold,
- int? cooperativeChunkSize,
- bool? enableSortValueCache,
- int? sortValueCacheSize,
Creates a copy with selected values replaced.
Implementation
FdcDataSetOperationOptions copyWith({
FdcDataSetOperationExecutionMode? sortExecutionMode,
int? isolateSortThreshold,
int? cooperativeChunkSize,
bool? enableSortValueCache,
int? sortValueCacheSize,
}) {
return FdcDataSetOperationOptions(
sortExecutionMode: sortExecutionMode ?? this.sortExecutionMode,
isolateSortThreshold: isolateSortThreshold ?? this.isolateSortThreshold,
cooperativeChunkSize: cooperativeChunkSize ?? this.cooperativeChunkSize,
enableSortValueCache: enableSortValueCache ?? this.enableSortValueCache,
sortValueCacheSize: sortValueCacheSize ?? this.sortValueCacheSize,
);
}