passwordNormal3Whitespace property

String passwordNormal3Whitespace
getter/setter pair

Password (Normal) Regex

Must contains at least: 1 uppercase letter, 1 lowecase letter & 1 number Minimum characters: 8

Implementation

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