This repository has been archived by the owner on Feb 21, 2021. It is now read-only.
0.2.1
- Add an option to add additional authorization scopes to
googleSignIn
:
// Authenticate and allow read-only access to Google Calendar.
final user = await firebaseAuth.googleSignIn(
scopes: [
'https://www.googleapis.com/auth/calendar.readonly',
],
);
if (user != null) {
// You have access!
}