ownEnumerableKeys static method

List ownEnumerableKeys(
  1. Map map
)

Implementation

static List<dynamic> ownEnumerableKeys(Map map) {
  return ownPropertyKeys(map).where((key) {
    if (isHiddenKey(key)) return false;
    final descriptor = getOwnPropertyDescriptor(map, key);
    return descriptor?.enumerable ?? true;
  }).toList();
}