isPasswordHardWithspace method

bool isPasswordHardWithspace()

Password (Hard) Regex

Must contains at least: 1 uppercase letter, 1 lowecase letter, 1 number, & 1 special character (symbol) Minimum characters: 8

Implementation

bool isPasswordHardWithspace() => RegVal.hasMatch(
      this,
      RegexPattern.passwordHardWhitespace,
    );