isMyPath method

bool isMyPath(
  1. String askedPath,
  2. HttpMethod askedMethod
)

Implementation

bool isMyPath(
  String askedPath,
  HttpMethod askedMethod,
) =>
    PathCheckers(
      askedMethod: askedMethod,
      askedPath: askedPath,
      routingEntity: this,
    ).isMyPath();