Validates if the given name is at least 6 characters long and not empty.
bool isNameValid(String name) => name.length >= 6 && name.isNotEmpty;