File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class FormBuilderState extends State<FormBuilder> {
107
107
108
108
bool get enabled => widget.enabled;
109
109
110
- final _fields = < String , FormBuilderFieldState > {};
110
+ final FormBuilderFields _fields = {};
111
111
112
112
//because dart type system will not accept ValueTransformer<dynamic>
113
113
final _transformers = < String , Function > {};
@@ -126,7 +126,7 @@ class FormBuilderState extends State<FormBuilder> {
126
126
/// Returns values after saving
127
127
Map <String , dynamic > get initialValue => widget.initialValue;
128
128
129
- Map < String , FormBuilderFieldState > get fields => _fields;
129
+ FormBuilderFields get fields => _fields;
130
130
131
131
dynamic transformValue <T >(String name, T ? v) {
132
132
final t = _transformers[name];
You can’t perform that action at this time.
0 commit comments