MephistoDropDown constructor

const MephistoDropDown({
  1. Key? key,
  2. required String label,
  3. required String placeholder,
  4. required Function onTap,
  5. required List<DropDownItem> dropdownItems,
  6. String? initialValue,
  7. TextEditingController? controller,
  8. Widget? icon,
  9. bool? isBold = true,
  10. bool? isSmall = false,
})

Implementation

const MephistoDropDown(
    {super.key,
    required this.label,
    required this.placeholder,
    required this.onTap,
    required this.dropdownItems,
    this.initialValue,
    this.controller,
    this.icon,
    this.isBold = true,
    this.isSmall = false});