class EventNotifier extends ValueNotifier<List<String>> { // Omitted @override void dispose() { streamSub.cancel(); super.dispose(); } }