groupByKey method

Map groupByKey(
  1. String key
)

Group the objects according to key/value pair and return list

Example:

list.groupBy("key")

Implementation

Map<dynamic, dynamic> groupByKey(String key) => FxList.groupByKey(this, key);