void main(){ var set = new Set()..add('apple')..add('mango'); for(var fruit in set){ print("fruit : ${fruit}"); } }