SearchDisplayLine constructor

const SearchDisplayLine({
  1. required String text,
  2. required UserSearchField field,
  3. List<SearchMatchRange> matches = const [],
  4. bool isPrimary = false,
})

Implementation

const SearchDisplayLine({
  required this.text,
  required this.field,
  this.matches = const [],
  this.isPrimary = false,
});