getKeys method

List<String> getKeys()

Gets keys of all elements stored in this map.

Returns a list with all map keys.

Implementation

List<String> getKeys() {
  var keys = <String>[];

  for (var key in _values.keys) {
    keys.add(key);
  }

  return keys;
}