getAuthenticationToken static method

  1. @Deprecated('Use [getAccessToken]')
Future<String> getAuthenticationToken({
  1. required String clientId,
  2. required String redirectUrl,
  3. String spotifyUri = '',
  4. bool asRadio = false,
  5. String? scope,
})

Implementation

@Deprecated('Use [getAccessToken]')
static Future<String> getAuthenticationToken(
        {required String clientId,
        required String redirectUrl,
        String spotifyUri = '',
        bool asRadio = false,
        String? scope}) =>
    getAccessToken(
      clientId: clientId,
      redirectUrl: redirectUrl,
      spotifyUri: spotifyUri,
      asRadio: asRadio,
      scope: scope,
    );