dart:js_util library

Utility methods to efficiently manipulate typed JSInterop objects in cases where the name to call is not known at runtime. You should only use these methods when the same effect cannot be achieved with @JS annotations. These methods would be extension methods on JSObject if Dart supported extension methods.

Functions

callConstructor(Function constr, List arguments) → dynamic
callMethod(o, String method, List args) → dynamic
getProperty(o, name) → dynamic
hasProperty(o, name) → dynamic
instanceof(o, Function type) → dynamic
jsify(object) → dynamic
WARNING: performance of this method is much worse than other util methods in this library. Only use this method as a last resort. [...]
newObject() → dynamic
setProperty(o, name, value) → dynamic