authorize method

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

Authorize OAuth2 code authorize.

Implementation

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