This commit is contained in:
2025-03-23 16:16:20 +02:00
parent aad7ed665c
commit f748b1b749

View File

@@ -97,12 +97,7 @@ class AstromicFormController extends FormController {
/// Get the value of a hosted state variable using it's ID.
T? getValue<T>(String id) {
prepareValue(id, false);
if (_hostedValues[id]?.$1 is (T?, bool)) {
return _hostedValues[id]?.$1;
} else {
throw FlutterError('Value found but is not of the type $T, it\'s of type ${_hostedValues[id]?.$1.runtimeType}');
}
}
@override