static bool isValidLetter(String? value) { return value != null && value.isNotEmpty && equals(value, Converter.toLetter(value)); }