unbind method

void unbind(
  1. State<StatefulWidget> state
)

Unbinds a previously bound State.

The state will no longer rebuild when the value changes.

Implementation

void unbind(State state) => _boundStates.remove(state);