disposeId method
Disposes of a specific ID from future updates.
Implementation
void disposeId(Object id) => switch (_updatersGroupIds) {
var groupIds? => {
groupIds[id]?.dispose(),
groupIds.remove(id)
},
_ => null
};
Disposes of a specific ID from future updates.
void disposeId(Object id) => switch (_updatersGroupIds) {
var groupIds? => {
groupIds[id]?.dispose(),
groupIds.remove(id)
},
_ => null
};