EasyDropdownItem constructor

const EasyDropdownItem({
  1. required String id,
  2. required Widget widget,
  3. bool selected = false,
  4. String? searchableText,
})

Implementation

const EasyDropdownItem({
  required this.id,
  required this.widget,
  this.selected = false,
  this.searchableText,
});