passwordNormal1 property

String passwordNormal1
getter/setter pair

Password (Normal) Regex

No whitespace allowed Must contains at least: 1 letter & 1 number Minimum characters: 8

Implementation

static String passwordNormal1 = r'^(?=.*[A-Za-z])(?=.*\d)\S{8,}$';