Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import 'package:queries/collections.dart';
  2.  
  3. void main() {
  4. List<String> list = ["a", "a", "b", "c", "b", "d"];
  5. var result = new Collection(list).distinct();
  6. print(result.toList());
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement