Create List of string from values of map
List<String> stringListFromMap(FieldsMap map) => map.entries.map((en) => en.value).toList();