isValidHardPassword property

bool isValidHardPassword

Implementation

bool get isValidHardPassword => isNotNullAndNotEmpty
    ? RegExp(RegExpConstants.instance.passwordHardRegexp).hasMatch(this)
    : false;