mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-12-13 07:11:03 +01: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}";
|
|
}
|