fixed warnings (super.key, etc)
This commit is contained in:
@@ -5,12 +5,11 @@ enum LoginInputStyle { username, password, school }
|
||||
|
||||
class LoginInput extends StatefulWidget {
|
||||
const LoginInput(
|
||||
{Key? key,
|
||||
{super.key,
|
||||
required this.style,
|
||||
this.controller,
|
||||
this.focusNode,
|
||||
this.onClear})
|
||||
: super(key: key);
|
||||
this.onClear});
|
||||
|
||||
final Function()? onClear;
|
||||
final LoginInputStyle style;
|
||||
|
||||
Reference in New Issue
Block a user