SearchItem constructor
const
SearchItem({
- Key? key,
- required Searchable data,
- SearchIndicatorShape? searchIndicatorShape,
- Color? indicatorColor,
- Color? removeItemIconColor,
- TextStyle? searchableItemTextStyle,
- required Function onDelete,
- required Function onSelect,
Implementation
const SearchItem(
{Key? key,
required this.data,
this.searchIndicatorShape,
this.indicatorColor,
this.removeItemIconColor,
this.searchableItemTextStyle,
required this.onDelete,
required this.onSelect})
: super(key: key);