nThreadsBatch property

int? get nThreadsBatch

number of threads to use for batch processing

Implementation

int? get nThreadsBatch => _nThreadsBatch;
set nThreadsBatch (int? value)

Implementation

set nThreadsBatch(int? value) {
  _nThreadsBatch = value;
  notifyListeners();
}