isPasswordNormal3Withspace method

bool isPasswordNormal3Withspace()

Password (Normal) Regex

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

Implementation

bool isPasswordNormal3Withspace() => RegVal.hasMatch(
      this,
      RegexPattern.passwordNormal3Whitespace,
    );