/// List utilities /// /// @author Pierre HUBERT /// Transform a list of string into something else List stringListToIntList(List srcList){ List list = List(); srcList.forEach((e){ list.add(int.parse(e)); }); return list; }