We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
On the throw, the following shows the line with bar in the trace instead of foo.
bar
foo
class A { void foo(int t) { throw new Exception('Called foo with $t'); } void bar(String s) { print('hello $s'); } } void main() { new A() ..bar('world') ..foo(42); }
@jmesserly