aves/plugins/aves_utils/lib/src/change_notifier.dart
Thibault Deckers 4a3b0e4a4e refactor
2023-03-15 00:17:51 +01:00

9 lines
254 B
Dart

import 'package:flutter/foundation.dart';
// `ChangeNotifier` wrapper so that it can be used anywhere, not just as a mixin
class AChangeNotifier extends ChangeNotifier {
void notify() {
// why is this protected?
super.notifyListeners();
}
}