Matcher typedef

Matcher = Future<bool> Function(File file, String line)

Callback used when evaluating whether a line is matched

Implementation

typedef Matcher = Future<bool> Function(
  /// The current file evaluated.
  File file,

  /// The current line evaluated.
  String line,
);