UsernameField constructor
const
UsernameField({
- Key? key,
- TextEditingController? controller,
- String? label,
- required String? validator(
- dynamic value
Implementation
const UsernameField(
{super.key,
this.controller,
this.label,
required String? Function(dynamic value) validator});