SearchHistoryEntry constructor

const SearchHistoryEntry({
  1. required String pattern,
  2. required SearchScope scope,
  3. required SearchOptions options,
  4. required DateTime timestamp,
  5. bool pinned = false,
})

Implementation

const SearchHistoryEntry({
  required this.pattern,
  required this.scope,
  required this.options,
  required this.timestamp,
  this.pinned = false,
});