update method
Updates the value of the stream.
Implementation
@protected
void update(T value) {
unawaited(_cancelSilently());
_update(
_Snapshot(
CancelableOperation.fromFuture(Future.value(value)),
value,
null,
),
);
}