This commit is contained in:
2025-04-16 02:38:55 +02:00
parent ea7b3722fb
commit ac97305370

View File

@@ -128,7 +128,7 @@ class _AstromicFuturePresenterState<T> extends State<AstromicFuturePresenter<T>>
//S1 -- Method to reinitialize or update `_future` with a new instance //S1 -- Method to reinitialize or update `_future` with a new instance
void _initializeFuture() { void _initializeFuture() {
_future = widget.controller.getFuture<T?>(widget.id)?.then((result) => result); _future = widget.controller.getFuture(widget.id)?.then((dynamic result) => result as T?);
} }
//!SECTION //!SECTION