disposeId method

void disposeId(
  1. Object id
)
inherited

Disposes an id to prevent future updates. These IDs are registered by Deex() or similar, allowing unlinking of state changes from the Widget to the Controller.

Implementation

void disposeId(Object id) {
  _updatersGroupIds?[id]?.dispose();
  _updatersGroupIds!.remove(id);
}