a14n / dart-js-wrapping

With that package you will be able to easilly wrap JS library in Dart.
https://pub.dartlang.org/packages/js_wrapping
Other
43 stars 16 forks source link

Fix runtime cast failure in JsObjectAsMap.keys. #20

Closed munificent closed 6 years ago

munificent commented 6 years ago

The array returned from JS interop is always List, so casting it to Iterable will fail in Dart 2.0.

See: https://github.com/dart-lang/sdk/issues/27223

a14n commented 6 years ago

Thanks