MbProfileDropdown constructor

const MbProfileDropdown({
  1. Key? key,
  2. required List<MBProfile> items,
  3. MBProfile? selectedItem,
  4. required dynamic onChanged(
    1. MBProfile?
    ),
  5. String? hintText,
  6. bool showSearchBox = true,
  7. bool isEnabled = true,
  8. bool circle = false,
})

Implementation

const MbProfileDropdown({
  Key? key,
  required this.items,
  this.selectedItem,
  required this.onChanged,
  this.hintText,
  this.showSearchBox = true,
  this.isEnabled = true,
  this.circle = false,
}) : super(key: key);