From 0b221db241af368cbfc75607c37d4e154f5d1a99 Mon Sep 17 00:00:00 2001 From: "Michael W. Aziz" Date: Sun, 23 Mar 2025 16:20:15 +0200 Subject: [PATCH] [0.1.2] --- lib/src/form/src/controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/form/src/controller.dart b/lib/src/form/src/controller.dart index 6ff526f..0fcab5b 100644 --- a/lib/src/form/src/controller.dart +++ b/lib/src/form/src/controller.dart @@ -97,7 +97,7 @@ class AstromicFormController extends FormController { /// Get the value of a hosted state variable using it's ID. T? getValue(String id) { prepareValue(id, false); - return _hostedValues[id]?.$1.$1; + return _hostedValues[id]?.$1?.$1; } @override