isEasyPassword property

bool isEasyPassword

Whether the string is a valid easy password.

Requirements:

  • minimum 8 characters
  • no whitespaces

Implementation

bool get isEasyPassword => _easyPasswordRegExp.hasMatch(this);