SearchResult constructor

const SearchResult({
  1. required List<String> path,
  2. required String key,
  3. required dynamic value,
  4. required MatchType matchType,
})

Implementation

const SearchResult({
  required this.path,
  required this.key,
  required this.value,
  required this.matchType,
});