SignIn constructor
clientId- use Google OAuth Web Application Client Id for webpage, moz-extension
- use Google Oauth Chrome Application Client Id for chrome-extension and standalone app
- cannot be empty
scopes: scopes for OAuth signin- Default
['email']for Google api
- Default
debugLog: force print of log message. Defaultfalse
Implementation
SignIn({
required this.clientId,
this.debugLog = false,
this.scopes = const ['email'],
});