isPasswordNormal1Withspace method

bool isPasswordNormal1Withspace()

Password (Normal) Regex

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

Implementation

bool isPasswordNormal1Withspace() => RegVal.hasMatch(
      this,
      RegexPattern.passwordNormal1Whitespace,
    );