authorizeAndExchangeCode method

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

Convenience method for authorizing and then exchanges code

Implementation

Future<AuthorizationTokenResponse?> authorizeAndExchangeCode(
    AuthorizationTokenRequest request) {
  return FlutterAppAuthPlatform.instance.authorizeAndExchangeCode(request);
}