stringListFromMap function

List<String> stringListFromMap(
  1. FieldsMap map
)

Create List of string from values of map

Implementation

List<String> stringListFromMap(FieldsMap map) =>
    map.entries.map((en) => en.value).toList();