dart检测变量是否存在的更简便的方式
来源:stackoverflow.com 更新时间:2023-05-25 21:55
如果您的要求只是空的或 null,您可以使用 Dart 的nullsafe运算符使其更简洁:
if (routeinfo?["no_route"]?.isEmpty ?? true) {
//
}
相关讨论:https://stackoverflow.com/questions/42446566/dart-null-false-empty-checking-how-to-write-this-shorter