authenticate method

  1. @override
Future<AccessID?> authenticate(
  1. String token, {
  2. Context? ctx,
})
override

Authenticate OAuth2 authenticate.

Implementation

@override
Future<AccessID?> authenticate(String token, {Context? ctx}) async {
  return await _h.invoke(this, _methods['authenticate']!, [token], ctx);
}