style: rename class and fix constructor

This commit is contained in:
Cyrine-benabid
2022-10-30 20:20:13 +01:00
parent fad02eb09d
commit 339e3d242f

View File

@ -269,15 +269,15 @@ class _AddOptionButton extends StatelessWidget {
class _CreateOptionTextField extends StatefulWidget { class _CreateOptionTextField extends StatefulWidget {
final PopoverMutex? popoverMutex; final PopoverMutex? popoverMutex;
const _CreateOptionTextField({ const _CreateOptionTextField({
super.key, Key? key,
this.popoverMutex, this.popoverMutex,
}); }) : super(key: key);
@override @override
State<_CreateOptionTextField> createState() => __CreateOptionTextFieldState(); State<_CreateOptionTextField> createState() => _CreateOptionTextFieldState();
} }
class __CreateOptionTextFieldState extends State<_CreateOptionTextField> { class _CreateOptionTextFieldState extends State<_CreateOptionTextField> {
late final FocusNode _focusNode; late final FocusNode _focusNode;
@override @override