File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.9.2+1
2+
3+ - Update documentation
4+
15## 0.9.2
26
37- Add option to use application default auth (@Kirpal )
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ You can also instantiate your own `Firestore` object. Please note that if your d
7777
7878` ` ` dart
7979var firebaseAuth = FirebaseAuth.(apiKey, await HiveStore());
80- var firestore = Firestore(projectId, auth: firebaseAuth);
80+ var auth = TokenAuthenticator.from(auth)?.authenticate;
81+ var firestore = Firestore(projectId, authenticator: firebaseAuth);
8182
8283await firebaseAuth.signIn(email, password);
8384var map = await firestore.collection("users").get();
Original file line number Diff line number Diff line change 11name : firedart
22description : A dart-native implementation of the Firebase Auth and Firestore SDKs.
3- version : 0.9.2
3+ version : 0.9.2+1
44homepage : https://github.com/cachapa/firedart
55
66environment :
You can’t perform that action at this time.
0 commit comments