Skip to content

Commit 098c5a2

Browse files
committed
feat(authentication): add AuthenticationCooldownCompleted event
Add a new event to the authentication bloc to handle the completion of the sign-in code request cooldown.
1 parent af996cc commit 098c5a2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib/authentication/bloc/authentication_event.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,11 @@ final class _AuthenticationStatusChanged extends AuthenticationEvent {
6868
@override
6969
List<Object?> get props => [user];
7070
}
71+
72+
/// {@template authentication_cooldown_completed}
73+
/// Event triggered when the sign-in code request cooldown has completed.
74+
/// {@endtemplate}
75+
final class AuthenticationCooldownCompleted extends AuthenticationEvent {
76+
/// {@macro authentication_cooldown_completed}
77+
const AuthenticationCooldownCompleted();
78+
}

0 commit comments

Comments
 (0)