TextMatch constructor

TextMatch({
  1. required int start,
  2. required int end,
  3. required String text,
  4. required MatchType type,
})

Implementation

TextMatch({
  required this.start,
  required this.end,
  required this.text,
  required this.type,
});