GoogleSignInCredentials constructor
GoogleSignInCredentials({})
Object to store all necessary values regarding Google OAuth2.0 Credentials.
You need to provide refreshToken
in case you are not on a mobile device.
Implementation
GoogleSignInCredentials({
required this.accessToken,
this.refreshToken,
this.scopes = const [],
this.tokenType,
this.idToken,
});