grant method

  1. @MPI(name: "mesh.oauth.grant")
Future<GrantCode?> grant(
  1. AccessGrant grant, {
  2. Context? ctx,
})

Grant OAuth2 code authorize.

Implementation

@MPI(name: "mesh.oauth.grant")
Future<GrantCode?> grant(AccessGrant grant, {Context? ctx}) {
  throw UnimplementedError('grant() has not been implemented.');
}