dartify function
- Object? o
Effectively the inverse of jsify, dartify Takes a JavaScript object, and converts it to a Dart based object. Only JS primitives, arrays, or 'map' like JS objects are supported.
Implementation
external Object? dartify(Object? o);