authenticate method

  1. @MPI(name: "mesh.oauth2.authenticate")
Future<AccessID?> authenticate(
  1. String token, {
  2. Context? ctx,
})

Authenticate OAuth2 authenticate.

Implementation

@MPI(name: "mesh.oauth2.authenticate")
Future<AccessID?> authenticate(String token, {Context? ctx}) {
  throw UnimplementedError('authenticate() has not been implemented.');
}