get method

Future<void> get(
  1. String match,
  2. HttpHandler handler, {
  3. List<OidcOptions>? security,
})

A GET request handler that matches a specific route.

Implementation

Future<void> get(String match, HttpHandler handler,
    {List<OidcOptions>? security}) async {
  await Route(this, opts.basePath + match,
          security: security ?? opts.security, apiClient: _apiClient)
      .get(handler);
}