zaagan
7/13/2019 - 2:19 PM

Dart HashSet

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}
*/