SearchRender constructor
      const
      SearchRender({ 
    
    
- Key? key,
- required ISearchTile data,
- required Color textColor,
- required Function onTap,
- required ThemeData theme,
Implementation
const SearchRender(
    {Key? key,
    required this.data,
    required this.textColor,
    required this.onTap,
    required this.theme})
    : super(key: key);