authenticate method

  1. @MPI(flags: 8, name: "mesh.oauth.authenticate")
Future<Session?> authenticate(
  1. String token, {
  2. Context? ctx,
})

Authenticate OAuth2 authenticate.

Implementation

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