updateQuiet method

void updateQuiet(
  1. T? value
)

Updates without pushing the new value to the stream

Implementation

void updateQuiet(T? value) {
  this._internalUpdate(value);
}