isMethod method

bool isMethod(
  1. String method
)

Checks if request method matches.

Implementation

bool isMethod(String method) =>
    this.method.toUpperCase() == method.toUpperCase();