jsToDart function
- @Deprecated("Use `js_interop_utils` extension method `objectDartify`")
- Object? o
Converts o
to Dart primitives or collections.
Implementation
@Deprecated("Use `js_interop_utils` extension method `objectDartify`")
Object? jsToDart(Object? o) {
return o?.objectDartify();
}