jsify function
- Object object
Recursively converts a JSON-like collection to JavaScript compatible representation.
WARNING: performance of this method is much worse than other util methods in this library. Only use this method as a last resort. Prefer instead to use @anonymous
@JS()
annotated classes to create map-like objects for JS interop.
The argument must be a Map or Iterable, the contents of which are also deeply converted. Maps are converted into JavaScript objects. Iterables are converted into arrays. Strings, numbers, bools, and @JS()
annotated objects are passed through unmodified. Dart objects are also passed through unmodified, but their members aren't usable from JavaScript.
Implementation
dynamic jsify(Object object) { if ((object is! Map) && (object is! Iterable)) { throw ArgumentError("object must be a Map or Iterable"); } return _convertDataTree(object); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-js_util/jsify.html