Sep 8, 2018 · 1 min read
Hi, Jermaine
I’m afraid to newbie your article could make impression that to get a window methods in Dart one should make some js interop oneself. Actually
window , document and so on are available just after importing standard dart:html library;
so that will just do
import 'dart:html';....window.console.log(something);```
