Checks if password has minLength
bool hasMinLength(String password, int minLength) { return password.length >= minLength ? true : false; }