SearchDialog constructor

const SearchDialog({
  1. Key? key,
  2. required String title,
  3. required String placeHolder,
  4. required List items,
  5. TextStyle? titleStyle,
  6. double? searchInputRadius,
  7. double? dialogRadius,
  8. TextStyle? itemStyle,
  9. bool? displayArabic,
})

Implementation

const SearchDialog({
  super.key,
  required this.title,
  required this.placeHolder,
  required this.items,
  this.titleStyle,
  this.searchInputRadius,
  this.dialogRadius,
  this.itemStyle,
  this.displayArabic,
});