This commit is contained in:
2025-04-27 14:36:03 +03:00
parent f9627998e7
commit 04481e9a34

View File

@@ -60,9 +60,4 @@ class SheetStore extends ChangeNotifier {
// This call tells the widgets that are listening to this store to rebuild.
notifyListeners();
}
/// Return a stream builder for real-time value updates.
Widget builder({required Widget child}) {
return ListenableBuilder(listenable: this, builder: (_, __) => child);
}
}