From 670878c2e7feb952f7845404fc76deade8284aee Mon Sep 17 00:00:00 2001 From: Michael Aziz Date: Tue, 15 Apr 2025 14:58:14 +0200 Subject: [PATCH] [SYNC] --- 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 9222085..dafa833 100644 --- a/lib/src/form/src/controller.dart +++ b/lib/src/form/src/controller.dart @@ -104,7 +104,7 @@ class AstromicFormController extends FormController { } /// Get all the hosted values IDs. - List get allValuesIDs => List.from(_hostedValues.entries.map((MapEntry entry) => entry.key)); + Map get allValues => _hostedValues; /// Get the value of a hosted state variable using it's ID. T? getValue(String id) {