MultiSearchView constructor

const MultiSearchView({
  1. Key? key,
  2. String? inputHint,
  3. Color? iconColor,
  4. TextStyle? inputHintTextStyle,
  5. TextStyle? inputTextStyle,
  6. double? width,
  7. Duration? slidingAnimationDuration,
  8. SearchIndicatorShape? searchIndicatorShape,
  9. Color? indicatorColor,
  10. Color? removeItemIconColor,
  11. TextStyle? searchableItemTextStyle,
  12. required Function onSelectItem,
  13. required Function onSearchComplete,
  14. required Function onDeleteAlternative,
  15. required Function onItemDeleted,
  16. required Function onSearchCleared,
})

Implementation

const MultiSearchView(
    {Key? key,
    this.inputHint,
    this.iconColor,
    this.inputHintTextStyle,
    this.inputTextStyle,
    this.width,
    this.slidingAnimationDuration,
    this.searchIndicatorShape,
    this.indicatorColor,
    this.removeItemIconColor,
    this.searchableItemTextStyle,
    required this.onSelectItem,
    required this.onSearchComplete,
    required this.onDeleteAlternative,
    required this.onItemDeleted,
    required this.onSearchCleared
    })
    : super(key: key);