Guest User

Untitled

a guest
Feb 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function JavaScriptCode()
  2. {
  3. this['init'] = init;
  4. function init()
  5. {
  6. console.log('init');
  7. }
  8. }
  9.  
  10. void main()
  11. {
  12. JsObject jsObject = new JsObject(['JavaScriptCode']);
  13. jsObject.callMethod('init', []);
  14. }
  15.  
  16. <!-- Html File -->
  17. <!DOCTYPE html>
  18. <html>
  19. <body>
  20. <script src="main.js">
  21. <script src="main.dart">
  22. </body>
  23. </html>
Add Comment
Please, Sign In to add comment