All suggestions that prefix-match the current input.
List<String> get matches { final query = _rawInput.toLowerCase(); if (query.isEmpty) return List.of(options); return options.where((o) => o.toLowerCase().startsWith(query)).toList(); }