SpotifyOAuth2Client constructor
Implementation
SpotifyOAuth2Client(
{required String redirectUri, required String customUriScheme})
: super(
authorizeUrl: 'https://accounts.spotify.com/authorize',
tokenUrl: 'https://accounts.spotify.com/api/token',
redirectUri: redirectUri,
customUriScheme: customUriScheme,
);