EndPoint constructor

EndPoint({
  1. required String method,
  2. required String path,
})

Implementation

EndPoint({
  required this.method,
  required this.path,
}) : _pathMatcher = PathMatcher(path);