FormLoginCustom constructor
const
FormLoginCustom({
- Key? key,
- required GlobalKey<
FormState> formKey, - required TextEditingController usuarioController,
- required String usuarioLabel,
- required TextEditingController senhaController,
- required String senhaLabel,
- required VoidCallback onLoginPressed,
Implementation
const FormLoginCustom({
super.key,
required this.formKey,
required this.usuarioController,
required this.usuarioLabel,
required this.senhaController,
required this.senhaLabel,
required this.onLoginPressed,
});