timestampLabel property

String get timestampLabel

Implementation

String get timestampLabel {
  final hh = timestamp.hour.toString().padLeft(2, '0');
  final mm = timestamp.minute.toString().padLeft(2, '0');
  final ss = timestamp.second.toString().padLeft(2, '0');
  return '$hh:$mm:$ss';
}