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:>
Dart now supports concatenation of lists using the + operator.
+
Example:
List result = [0, 1, 2] + [3, 4, 5];