passwordNormal3AllowedWhitespace property Null safety

String passwordNormal3AllowedWhitespace
read / write

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

Implementation

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