passwordNormal1Whitespace property

String passwordNormal1Whitespace
getter/setter pair

Password (Normal) Regex

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

Implementation

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