currentValue property

T? get currentValue

Implementation

T? get currentValue => _currentValue;
set currentValue (T? newValue)

Implementation

set currentValue(T? newValue) {
  add(newValue);
}