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

@@ -1,5 +1,6 @@
class SignupConfirmationArgs {
final String? email;
final String? password;
const SignupConfirmationArgs({this.email});
const SignupConfirmationArgs({this.email, this.password});
}