i want to print the Time that i initialized manually but if i print it then i only get this here.
I/flutter (14375): TimeOfDay(15:00)
Here is my Code
Future<void> ausgabe(BuildContext context) async {
Map<String, TimeOfDay> zeiten = {"Montag": TimeOfDay(hour: 15, minute: 0)};
print(zeiten["Montag"]);
}
How can i only print 15:00 instead of TimeOfDay(15:00)?