isPasswordEasyWithspace method

bool isPasswordEasyWithspace()

Password (Easy) Regex

Minimum characters: 8

Implementation

bool isPasswordEasyWithspace() => RegVal.hasMatch(
      this,
      RegexPattern.passwordEasyWhitespace,
    );