This commit is contained in:
2025-04-27 14:29:42 +03:00
parent cb87475c43
commit d9cf149d26

View File

@@ -48,7 +48,7 @@ class SheetStore extends ChangeNotifier {
}
/// Return a stream builder for real-time value updates.
Widget builder(Widget child) {
Widget builder({required Widget child}) {
return ListenableBuilder(listenable: this, builder: (_,__) => child);
}
}