strongPassword property

RegExp strongPassword
final

Matches a strong password: ≥8 chars, uppercase, lowercase, digit, special.

Implementation

static final RegExp strongPassword = RegExp(
  r'^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[!@#\$%^&*(),.?":{}|<>]).{8,}$',
);