passwordNormal1AllowedWhitespace constant

Pattern const passwordNormal1AllowedWhitespace

Password (Normal) Regex Allowing all character Must contains at least: 1 letter & 1 number Minimum character: 8

Implementation

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