oldValue property

  1. @override
T oldValue
override

The old value if has change

Implementation

@override
T get oldValue {
  if (_rebuildCount == 0) {
    throw 'The computation function didn\'t run, maybe pausing';
  }
  return _oldValue;
}