SearchResult constructor

const SearchResult({
  1. required String title,
  2. String? subtitle,
  3. String? href,
  4. void onTap()?,
})

Implementation

const SearchResult({
  required this.title,
  this.subtitle,
  this.href,
  this.onTap,
});