📌  相关文章
📜  如何检查颤振应用程序是否在调试中运行 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:23.945000             🧑  作者: Mango

代码示例1
if (kDebugMode) {
  // Code here will only be included in debug mode.
  // As kDebugMode is a constant, the tree shaker
  // will remove the code entirely from compiled code.
} else {

}