用法
bool isBefore(
DateTime other
)
如果 this 出现在 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
//即使在改变时区时,这种关系也保持不变。
print(earlier.isBefore(now.toUtc())); // true
print(earlier.toUtc().isBefore(now)); // true
print(!now.toUtc().isBefore(now)); // true
print(!now.isBefore(now.toUtc())); // true
评论(0)