bool hasValidInput(String input) { final symbols = input.split(''); return symbols.every(_alphabet.contains); }