isBefore 方法
- DateTime other
如果 此 日期时间发生在 other
之前,则返回 true。
比较不受时间是否为 UTC 或本地时区的时间影响。
final now = DateTime.now();
final earlier = now.subtract(const Duration(seconds: 5));
print(earlier.isBefore(now)); // true
print(!now.isBefore(now)); // true
// This relation stays the same, even when changing timezones.
print(earlier.isBefore(now.toUtc())); // true
print(earlier.toUtc().isBefore(now)); // true
print(!now.toUtc().isBefore(now)); // true
print(!now.isBefore(now.toUtc())); // true
实现
external bool isBefore(DateTime other);