disposeId method

void disposeId(
  1. Object id
)

To dispose an id from future updates(), this ids are registered by GetBuilder() or similar, so is a way to unlink the state change with the Widget from the Controller.

Implementation

void disposeId(Object id) {
  _updatersGroupIds!.remove(id);
}