jsObjectKeys function
Returns the keys of JSObject o
.
Implementation
@Deprecated("Use `js_interop_utils` extension `keys`")
List<String> jsObjectKeys(JSObject o) {
return o.keys.toList();
}
Returns the keys of JSObject o
.
@Deprecated("Use `js_interop_utils` extension `keys`")
List<String> jsObjectKeys(JSObject o) {
return o.keys.toList();
}