greedy property

bool get greedy

Enables greedy decoding if set to true.

Implementation

bool get greedy => _greedy;
set greedy (bool value)

Implementation

set greedy(bool value) {
  _greedy = value;
  notifyListeners();
}