TextMatch constructor

const TextMatch({
  1. required String path,
  2. required int line,
  3. required int column,
  4. required String text,
  5. List<String> before = const [],
  6. List<String> after = const [],
})

Implementation

const TextMatch({
  required this.path,
  required this.line,
  required this.column,
  required this.text,
  this.before = const [],
  this.after = const [],
});