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

Fix incomplete README for FirebaseAuth #694

Merged
merged 2 commits into from
Jul 30, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix incomplete doc (missing GoogleSignIn initialization)
  • Loading branch information
paolorotolo committed Jul 29, 2018
commit e9ca643cf8c65de9faeb7b416f900285caf5635f
3 changes: 2 additions & 1 deletion packages/firebase_auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ Add the following imports to your Dart code:
import 'package:firebase_auth/firebase_auth.dart';
```

Initialize `FirebaseAuth`:
Initialize `GoogleSignIn` and `FirebaseAuth`:
```dart
final GoogleSignIn _googleSignIn = GoogleSignIn();
final FirebaseAuth _auth = FirebaseAuth.instance;
```

Expand Down