get method
Future<void>
get(
- String match,
- HttpHandler handler, {
- List<
OidcOptions> ? security, - List<
HttpHandler> middlewares = const [],
A GET request handler
that match
es a specific route.
Implementation
Future<void> get(String match, HttpHandler handler,
{List<OidcOptions>? security,
List<HttpHandler> middlewares = const []}) async {
await route(match, security: security, middlewares: middlewares)
.get(handler);
}