silentUpdateCurrent method

void silentUpdateCurrent(
  1. T current(
    1. T cValue
    )
)

Updates the current value without notifying listeners.

This is a convenience method equivalent to calling updateCurrent with doNotifyListeners set to false. Still respects the _forceUpdate flag.

Implementation

void silentUpdateCurrent(T Function(T cValue) current) =>
    updateCurrent(current, doNotifyListeners: false);