match method

bool match(
  1. String? route
)

Implementation

bool match(String? route) {
  return matchPath(route) && matchQueryParams(route);
}