This commit is contained in:
2025-03-09 14:36:34 +02:00
parent 2a9d33290c
commit 968d57a8b1

View File

@@ -122,7 +122,7 @@ class _AstromicStreamPresenterState<T> extends State<AstromicStreamPresenter<T>>
//S1 -- Method to reinitialize or update `_future` with a new instance
void _initializeStream() {
_stream = widget.controller.getStream<T?>(widget.id)?.asyncMap((dynamic result) => result) as Stream<T?>?;
_stream = widget.controller.getStream<T?>(widget.id)?.asyncMap((dynamic result) => result);
}
//!SECTION