match method

bool match(
  1. String method,
  2. String path
)

Implementation

bool match(String method, String path) =>
    (method == this.method) && _pathMatcher.match(path);