disposeSingletonsByTag abstract method Null safety
- String tag,
- {void onRemoved(
- dynamic instance
Removes singleton instances by tag.
This does not remove it from the registry tree.
Implementation
void disposeSingletonsByTag(
String tag, {
void Function(dynamic instance)? onRemoved,
});