LabelField constructor

const LabelField({
  1. Key? key,
  2. required String label,
  3. required TextEditingController controller,
  4. String? description,
  5. TextInputType? keyboardType,
  6. bool obscureText = false,
  7. InputDecoration? decoration,
  8. int? minLines,
  9. 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,
});