isPasswordEasy method

bool isPasswordEasy()

Password (Easy) Regex

No whitespace allowed Minimum characters: 8

Implementation

bool isPasswordEasy() => RegVal.hasMatch(
      this,
      RegexPattern.passwordEasy,
    );