authorizeAndExchangeCode method

Future<AuthorizationTokenResponse?> authorizeAndExchangeCode(
  1. AuthorizationTokenRequest request
)

Convenience method for authorizing and then exchanges the authorization grant code.

Implementation

Future<AuthorizationTokenResponse?> authorizeAndExchangeCode(
    AuthorizationTokenRequest request) {
  throw UnimplementedError(
      'authorizeAndExchangeCode() has not been implemented');
}