Guest User

Untitled

a guest
Jul 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. void main() {
  2. Set<String> set1 = new Set<String>.from(['1', '2', '3']);
  3. Set<String> set2 = new Set<String>.from(['1', '2', '3']);
  4.  
  5. print('Sets equal => ${set1 == set2}');
  6. }
Add Comment
Please, Sign In to add comment