mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 16:24:07 +02:00
4 lines
119 B
Dart
4 lines
119 B
Dart
String dateFormatted(DateTime date) {
|
|
return "${date.day}-${date.month}-${date.year} ${date.hour}:${date.minute}";
|
|
}
|