How to copy list values to another list in flutter

Use myList = List.from(mynewlist); instead of mylist = mynewlist;

Leave a Comment