@@ -21,20 +21,20 @@ class UserRepository {
21
21
22
22
late final ValueStream <User > _user;
23
23
24
- /// Current user as a stream.
24
+ /// Current [User] as a stream.
25
25
Stream <User > get watchUser => _user.asBroadcastStream ();
26
26
27
- /// Gets the current user synchronously.
27
+ /// Gets the current [User] synchronously.
28
28
User get user => _user.valueOrNull ?? User .empty;
29
29
30
- /// Gets the initial ` watchUser` emission.
30
+ /// Gets the initial [ watchUser] emission.
31
31
///
32
- /// Returns ` User.none` when an error occurs.
32
+ /// Returns [ User.empty] when an error occurs.
33
33
Future <User > getOpeningUser () {
34
34
return watchUser.first.catchError ((Object _) => User .empty);
35
35
}
36
36
37
- /// Signs the user in anonymously.
37
+ /// Signs the [User] in anonymously.
38
38
Future <void > signInAnonymously () async {
39
39
try {
40
40
final userCredential = await _firebaseAuth.signInAnonymously ();
@@ -45,7 +45,7 @@ class UserRepository {
45
45
}
46
46
}
47
47
48
- /// Signs the user in using google provider.
48
+ /// Signs the [User] in using google provider.
49
49
Future <void > signInWithGoogle () async {
50
50
try {
51
51
final googleSignInAccount = await _googleSignIn.signIn ();
@@ -68,7 +68,7 @@ class UserRepository {
68
68
}
69
69
}
70
70
71
- /// Signs the user in using apple provider.
71
+ /// Signs the [User] in using apple provider.
72
72
Future <void > signInWithApple () async {
73
73
try {
74
74
// To prevent replay attacks with the credential returned from Apple, we
@@ -108,7 +108,7 @@ class UserRepository {
108
108
}
109
109
}
110
110
111
- /// Logs out the current user .
111
+ /// Signs out the current [User] .
112
112
Future <void > signOut () async {
113
113
try {
114
114
await Future .wait ([
@@ -120,7 +120,7 @@ class UserRepository {
120
120
}
121
121
}
122
122
123
- /// Marks a quiz as completed.
123
+ /// Marks a `Quiz` as completed.
124
124
///
125
125
/// It also increments the total no of completed quizzes.
126
126
Future <void > markQuizCompleted ({
0 commit comments