passwordNormal2AllowedWhitespace property

Pattern passwordNormal2AllowedWhitespace
getter/setter pair

Password (Normal) Regex Allowing LETTER and NUMBER only Must contains: 1 letter & 1 number Minimum character: 8

Implementation

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