exchangeToken method

Future<Map> exchangeToken(
  1. String clientId,
  2. String clientSecret,
  3. String code,
  4. String? codeVerifier,
  5. String grantType,
  6. String redirectUri,
)

Implementation

Future<Map> exchangeToken(String clientId, String clientSecret, String code,
    String? codeVerifier, String grantType, String redirectUri) {
  throw UnimplementedError("Exchange Token has not been implemented");
}