// @dart = 2.10 import 'dart:developer'; void main() { for (int i = 0; i < 10; ++i) { log(i.toString()); } debugger(); }