dartify function Null safety

Object? dartify(
  1. 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);