immich/mobile/lib/utils/datetime_comparison.dart

3 lines
136 B
Dart
Raw Normal View History

bool isAtSameMomentAs(DateTime? a, DateTime? b) =>
(a == null && b == null) || ((a != null && b != null) && a.isAtSameMomentAs(b));