dart检测变量是否存在的更简便的方式

来源:stackoverflow.com 发布时间:2022-09-06 15:36

如果您的要求只是空的或 null,您可以使用 Dart 的nullsafe运算符使其更简洁:

if (routeinfo?["no_route"]?.isEmpty ?? true) {
  //
}
相关讨论:https://stackoverflow.com/questions/42446566/dart-null-false-empty-checking-how-to-write-this-shorter
更新时间:2024-12-18 20:26