GoogleOAuth2Client constructor
Implementation
GoogleOAuth2Client(
{required String redirectUri, required String customUriScheme})
: super(
authorizeUrl: 'https://accounts.google.com/o/oauth2/v2/auth',
tokenUrl: 'https://oauth2.googleapis.com/token',
revokeUrl: 'https://oauth2.googleapis.com/revoke',
redirectUri: redirectUri,
customUriScheme: customUriScheme);