isPasswordNormal2Withspace method

bool isPasswordNormal2Withspace()

Password (Normal) Regex

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

Implementation

bool isPasswordNormal2Withspace() => RegVal.hasMatch(
      this,
      RegexPattern.passwordNormal2Whitespace,
    );