The debugger in IntelliJ or Dart Editor does not stop at a breakpoint for this code:
main() async { var x = 1; bool stop = true; // breakpoint here }
... but for this code:
main() { var x = 1; bool stop = true; // breakpoint here }
Dart SDK 1.8.3 and latest stable versions on both IDEs.
source share