Returns the keys of JsObject o.
o
List<String> jsObjectKeys(JsObject o) { var keys = context['Object'].callMethod('keys', [o]); return jsArrayToList(keys)!.map((e) => '$e').toList(); }