9 lines
237 B
Dart
9 lines
237 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
// `ChangeNotifier` wrapper to call `notify` without constraint
|
|
class AChangeNotifier extends ChangeNotifier {
|
|
void notify() {
|
|
// why is this protected?
|
|
super.notifyListeners();
|
|
}
|
|
}
|