diff --git a/lib/src/sheet/src/models/sheet_store.model.dart b/lib/src/sheet/src/models/sheet_store.model.dart index 4516f53..84cc2e7 100644 --- a/lib/src/sheet/src/models/sheet_store.model.dart +++ b/lib/src/sheet/src/models/sheet_store.model.dart @@ -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); - } }