getOAuthAuthorization method

Future<Map> getOAuthAuthorization(
  1. String token,
  2. String clientId,
  3. String redirectUri,
  4. String responseType,
  5. String scope,
  6. String? codeChallenge,
  7. String? codeChallengeMethod,
  8. String? state,
)

Implementation

Future<Map> getOAuthAuthorization(
    String token,
    String clientId,
    String redirectUri,
    String responseType,
    String scope,
    String? codeChallenge,
    String? codeChallengeMethod,
    String? state) {
  throw UnimplementedError(
      "Get OAuth Authorization has not been implemented");
}