JSObjectUtilExtension extension

on

Methods

callMethod<T extends JSAny?>(JSAny method, [JSAny? arg1, JSAny? arg2, JSAny? arg3, JSAny? arg4]) → T
callMethodVarArgs<T extends JSAny?>(JSAny method, [List<JSAny?>? arguments]) → T
delete(JSAny property) JSBoolean
Deletes the given property from this JSObject.
getProperty<T extends JSAny?>(JSAny property) → T
Gets a given property from this JSObject.
hasProperty(JSAny property) JSBoolean
Whether or not this JSObject has a given property.

Operators

operator [](JSAny property) JSAny?
Equivalent to invoking operator [] in JS.
operator []=(JSAny property, JSAny? value) → void
Equivalent to invoking []= in JS.