void main(List args) { final voted = {}; checkVoter('tom', voted); checkVoter('mike', voted); checkVoter('mike', voted); } void checkVoter(String name, Map voted) { if (voted[name] != null) { print('Kick them out!'); } else { voted[name] = true; print('Let them vote'); } }