SearchHighlight constructor

const SearchHighlight({
  1. required int start,
  2. required int end,
  3. bool isCurrentMatch = false,
})

Implementation

const SearchHighlight({
  required this.start,
  required this.end,
  this.isCurrentMatch = false,
});