I was wondering if there was an easy way to concatenate two lists in dart to create a brand new list object. I couldn\'t find anything and something like this:
My list:>
If you want to merge two lists and remove duplicates could do:
var newList = [...list1, ...list2].toSet().toList();