vocabOnly property

bool? get vocabOnly

Indicates whether only the vocabulary should be loaded.

If true, only the vocabulary is loaded, which can be useful for certain operations where the full model is not required. If false or null, the full model is loaded.

Implementation

bool? get vocabOnly => _vocabOnly;
set vocabOnly (bool? value)

Implementation

set vocabOnly(bool? value) {
  _vocabOnly = value;
  notifyListeners();
}