In JavaScript, you can access global variables and functions from the DevTool console (for example, to call a function manually).
I tried to do this in Dartium, but always get a reference error.
I tried the following options:
testFunc () { return "test"; } var testFunc2 = () { return "test"; } void main() { var testFunc3 () { return "test"; } }
but no one can be called through the DevTool Dartium console.
source share