ownEnumerableKeys static method
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();
}