PathMatcher constructor

const PathMatcher({
  1. required String path,
  2. required String expected,
  3. required PathComparator comparator,
})

Implementation

const PathMatcher({
  required this.path,
  required this.expected,
  required this.comparator,
});