标签: dart
在服务器端VM应用程序中,有一些可能会或可能不会返回的期货。如何无条件退出应用程序?
答案 0 :(得分:9)
退出VM:
import 'dart:io'; main() { exit(0); // or non-zero for some error code }
记录在案here。谢谢你的询问!