2022-08-16 15:48:05 +02:00

6 lines
161 B
Dart

extension DateExtensions on DateTime {
bool isSameDay(final DateTime other) {
return year == other.year && month == other.month && day == other.day;
}
}