void main() {
var values = List<String>.filled(3, 0);
values[0] = 'abc';
values[1] = 'def';
values[2] = 'ghi';
}
I am trying to have a regular debugging experience with breakpoints on my code. However, I don't want to design a UI screen on my emulator just to run a code that does not require UI presentation.
In other words, I am trying to run dart code in isolation from UI.