Dart HashSet
import 'dart:collection'; 
Set myRecords = new  HashSet(); 
myRecords.add({'Name':'Goku'});
myRecords.add(23);
myRecords.add(45);
myRecords.add(true);
myRecords.add('potatoes');
  
for(var data in myRecords){ 
   print(data); 
}
/******** Output
  potatoes
  23
  45
  true
  {Name: Goku}
*/