disposeId method

void disposeId(
  1. Object id
)

Disposes of a specific ID from future updates.

Implementation

void disposeId(Object id) => switch (_updatersGroupIds) {
      var groupIds? => {groupIds[id]?.dispose(), groupIds.remove(id)},
      _ => null
    };