LabelFormDropDown constructor

LabelFormDropDown({
  1. Key? key,
  2. required String label,
  3. required String hint,
  4. required TextEditingController controller,
  5. required String? validator(
    1. String?
    ),
  6. required List<String> labels,
  7. bool isCohort = false,
})

Implementation

LabelFormDropDown({
  Key? key,
  required this.label,
  required this.hint,
  required this.controller,
  required this.validator,
  required this.labels,
  this.isCohort = false,
}) : super(key: key);