authorize method

  1. @MPI(flags: 8, name: "mesh.auth.authorize")
Future<AccessToken?> authorize(
  1. String code, {
  2. Context? ctx,
})

Authorize OAuth2 code authorize.

Implementation

@MPI(flags: 8, name: "mesh.auth.authorize")
Future<AccessToken?> authorize(String code, {Context? ctx}) {
  throw UnimplementedError('authorize() has not been implemented.');
}