value property

  1. @override
T get value
override

Getter of the current value of the informer.

Implementation

@override
T get value => _value;
set value (T newValue)

Setter of the current value of the informer.

This will notify listeners by default, respecting the _forceUpdate flag. For silent updates, use silentUpdate.

Implementation

set value(T newValue) => update(newValue);