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

Store locally the list of conversations

This commit is contained in:
2019-04-24 14:25:46 +02:00
parent 7f41f0dae1
commit eb34ed5c3d
7 changed files with 121 additions and 18 deletions

14
lib/utils/list_utils.dart Normal file
View File

@ -0,0 +1,14 @@
/// List utilities
///
/// @author Pierre HUBERT
/// Transform a list of string into something else
List<int> stringListToIntList(List<String> srcList){
List<int> list = List();
srcList.forEach((e){
list.add(int.parse(e));
});
return list;
}