List 와 비슷하지만, 중복을 허용하지 않는다.
List
Set<String> fruits = { 'Apple', 'Strawberry', 'Melon' };
Set<String> fruits = { 'Apple', 'Strawberry', 'Melon', 'Apple' // 중복 }; print(fruits); // {Apple, Strawberry, Melon}