Skip to content

Commit 3b2853e

Browse files
committed
docs(user_repository): improve comments
1 parent 4395421 commit 3b2853e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/user_repository/lib/src/user_repository.dart

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ class UserRepository {
2121

2222
late final ValueStream<User> _user;
2323

24-
/// Current user as a stream.
24+
/// Current [User] as a stream.
2525
Stream<User> get watchUser => _user.asBroadcastStream();
2626

27-
/// Gets the current user synchronously.
27+
/// Gets the current [User] synchronously.
2828
User get user => _user.valueOrNull ?? User.empty;
2929

30-
/// Gets the initial `watchUser` emission.
30+
/// Gets the initial [watchUser] emission.
3131
///
32-
/// Returns `User.none` when an error occurs.
32+
/// Returns [User.empty] when an error occurs.
3333
Future<User> getOpeningUser() {
3434
return watchUser.first.catchError((Object _) => User.empty);
3535
}
3636

37-
/// Signs the user in anonymously.
37+
/// Signs the [User] in anonymously.
3838
Future<void> signInAnonymously() async {
3939
try {
4040
final userCredential = await _firebaseAuth.signInAnonymously();
@@ -45,7 +45,7 @@ class UserRepository {
4545
}
4646
}
4747

48-
/// Signs the user in using google provider.
48+
/// Signs the [User] in using google provider.
4949
Future<void> signInWithGoogle() async {
5050
try {
5151
final googleSignInAccount = await _googleSignIn.signIn();
@@ -68,7 +68,7 @@ class UserRepository {
6868
}
6969
}
7070

71-
/// Signs the user in using apple provider.
71+
/// Signs the [User] in using apple provider.
7272
Future<void> signInWithApple() async {
7373
try {
7474
// To prevent replay attacks with the credential returned from Apple, we
@@ -108,7 +108,7 @@ class UserRepository {
108108
}
109109
}
110110

111-
/// Logs out the current user.
111+
/// Signs out the current [User].
112112
Future<void> signOut() async {
113113
try {
114114
await Future.wait([
@@ -120,7 +120,7 @@ class UserRepository {
120120
}
121121
}
122122

123-
/// Marks a quiz as completed.
123+
/// Marks a `Quiz` as completed.
124124
///
125125
/// It also increments the total no of completed quizzes.
126126
Future<void> markQuizCompleted({

0 commit comments

Comments
 (0)