strongPassword property
Matches a strong password: ≥8 chars, uppercase, lowercase, digit, special.
Implementation
static final RegExp strongPassword = RegExp(
r'^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[!@#\$%^&*(),.?":{}|<>]).{8,}$',
);
Matches a strong password: ≥8 chars, uppercase, lowercase, digit, special.
static final RegExp strongPassword = RegExp(
r'^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[!@#\$%^&*(),.?":{}|<>]).{8,}$',
);