/// List utilities /// /// @author Pierre HUBERT /// Transform a list of dynamic thins into something a list of ints List listToIntList(List srcList){ List list = List(); srcList.forEach((e){ list.add(int.parse(e)); }); return list; }