CustomTextField constructor
const
CustomTextField({
- required String labelText,
- bool isPassword = false,
- TextEditingController? controller,
- Key? key,
Implementation
const CustomTextField({
required this.labelText,
this.isPassword = false,
this.controller,
Key? key,
}) : super(key: key);