dispose method
Implementation
@mustCallSuper
void dispose() {
_updaters = null;
final groups = _updatersGroupIds;
if (groups != null) {
for (final group in groups.values) {
group.dispose();
}
groups.clear();
_updatersGroupIds = null;
}
}