fix for resend, cooldown and a few small fixes

This commit is contained in:
Arseni
2026-02-13 01:03:47 +03:00
parent 44a22ce962
commit b5db65ef78
24 changed files with 550 additions and 227 deletions

View File

@@ -26,6 +26,7 @@ class AccountVerificationController extends ChangeNotifier {
Exception? get error => _verificationProvider.error;
bool get canResend => _verificationProvider.canResendVerification;
bool get isResending => _resendStatus == FlowStatus.resending;
bool get isAlreadyVerified => _verificationProvider.isTokenAlreadyUsed;
void startVerification(String token) {
final trimmed = token.trim();