mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-30 20:24:25 +00:00
6 lines
123 B
Dart
6 lines
123 B
Dart
extension DateTimeExtension on DateTime {
|
|
DateTime floor() {
|
|
return DateTime(this.year, this.month, this.day);
|
|
}
|
|
}
|