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 @@ -3,7 +3,7 @@ import 'package:flutter_form_builder/flutter_form_builder.dart';
3
3
4
4
class GroupedCheckbox <T > extends StatefulWidget {
5
5
/// A list of string that describes each checkbox. Each item must be distinct.
6
- final List <FormBuilderFieldOption < T > > options;
6
+ final List <FormBuilderFieldOption > options;
7
7
8
8
/// A list of string which specifies automatically checked checkboxes.
9
9
/// Every element must match an item from itemList.
@@ -205,7 +205,7 @@ class GroupedCheckbox<T> extends StatefulWidget {
205
205
}) : super (key: key);
206
206
207
207
@override
208
- _GroupedCheckboxState < T > createState () => _GroupedCheckboxState < T > ();
208
+ _GroupedCheckboxState createState () => _GroupedCheckboxState ();
209
209
}
210
210
211
211
class _GroupedCheckboxState <T > extends State <GroupedCheckbox <T >> {
You can’t perform that action at this time.
0 commit comments