passwordNormal2Whitespace property

String passwordNormal2Whitespace
getter/setter pair

Password (Normal) Regex

No symbolic characters allowed Must contains: 1 letter & 1 number Minimum characters: 8

Implementation

static String passwordNormal2Whitespace =
    r'^(?=.*[A-Za-z])(?=.*\d)[a-zA-Z0-9 ]{8,}$';