isValidLowPassword property

bool isValidLowPassword

Implementation

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