Can we omit dispose() in ChangeNotifiers & ValueNotifiers in Flutter?
In Flutter and Dart, if I mix-in a ChangeNotifier, or use ValueNotifier<T> for example (_counter = ValueNotifier<int>(0)) should I always dispose() it? I understand that it has a dispose() member, which clears the listeners list. But in most examples I've…