isAtSameMomentAs 方法
- DateTime other
如果此对象 this 与 other
在同一时刻发生,则返回 true。
比较与时间是在 UTC 还是本地时区无关。
final now = DateTime.now();
final later = now.add(const Duration(seconds: 5));
print(!later.isAtSameMomentAs(now)); // true
print(now.isAtSameMomentAs(now)); // true
// This relation stays the same, even when changing timezones.
print(!later.isAtSameMomentAs(now.toUtc())); // true
print(!later.toUtc().isAtSameMomentAs(now)); // true
print(now.toUtc().isAtSameMomentAs(now)); // true
print(now.isAtSameMomentAs(now.toUtc())); // true
实现
external bool isAtSameMomentAs(DateTime other);