convertMapToList method

List convertMapToList()

Implementation

List<dynamic> convertMapToList() {
  return entries.map((e) => MapEntry(e.key, e.value)).toList();
}