aves/plugins/aves_utils/lib/src/change_notifier.dart
Thibault Deckers b1920dbe1c lab: transform
2023-05-14 12:50:08 +02:00

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();
}
}