9 lines
254 B
Dart
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();
|
|
}
|
|
}
|