Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

0.2.1

Latest
Compare
Choose a tag to compare
@matanlurey matanlurey released this 01 Jun 03:17
· 1 commit to master since this release

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!
}