LabelField constructor
const
LabelField({
- Key? key,
- required String label,
- required TextEditingController controller,
- String? description,
- TextInputType? keyboardType,
- bool obscureText = false,
- InputDecoration? decoration,
- int? minLines,
- int? maxLines,
Implementation
const LabelField({
super.key,
required this.label,
required this.controller,
this.description,
this.keyboardType,
this.obscureText = false,
this.decoration,
this.minLines,
this.maxLines,
});