feat: finished new logging feature

This commit is contained in:
Anton Stubenbord
2023-10-12 17:50:13 +02:00
parent f0c3ced804
commit 7d1c0dffe4
37 changed files with 1446 additions and 720 deletions

View File

@@ -35,6 +35,10 @@ extension DateHelpers on DateTime {
yesterday.month == month &&
yesterday.year == year;
}
bool isOnSameDayAs(DateTime other) {
return other.day == day && other.month == month && other.year == year;
}
}
extension StringNormalizer on String {