1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Created conversation route

This commit is contained in:
2019-04-24 17:46:25 +02:00
parent 4be5a1b5a8
commit 1ec197202c
7 changed files with 181 additions and 19 deletions

View File

@ -2,8 +2,8 @@
///
/// @author Pierre HUBERT
/// Transform a list of string into something else
List<int> stringListToIntList(List<String> srcList){
/// Transform a list of dynamic thins into something a list of ints
List<int> listToIntList(List<dynamic> srcList){
List<int> list = List();
srcList.forEach((e){