js_interop 0.0.1 js_interop: ^0.0.1 copied to clipboard
Common utilities to use JavaScript interoperability with Dart
import 'webfont.dart' as bundle;
import 'package:js_interop/js_interop.dart';
void main() {
JsInterop.safeAddScript('WebFont',
bundle.buffer).then((ev) {
print('WebFont is loaded!');
});
}