uhrzeit function

String uhrzeit(
  1. String zeitstempel
)

Uhrzeit eines Belegs in Wiener Wanduhrzeit (HH:MM).

Implementation

String uhrzeit(String zeitstempel) {
  final w = ViennaTime.toWallClock(ViennaTime.parseServerTimeStamp(zeitstempel));
  return '${_zwei(w.hour)}:${_zwei(w.minute)}';
}