js library
Cross-platform "dart:js" library.
Classes
-
JsArray<
E> - A List that proxies a JavaScript array.
- JsFunction
- A proxy on a JavaScript Function object.
- JsObject
- A proxy on a JavaScript object.
Functions
-
allowInterop<
F extends Function> (F f) → F -
Returns a wrapper around function
f
that can be called from JavaScript usingpackage:js
JavaScript interop. -
allowInteropCaptureThis(
Function f) → Function -
Returns a wrapper around function
f
that can be called from JavaScript usingpackage:js
JavaScript interop, passing JavaScriptthis
as the first argument.