format property

String get format

Implementation

String get format {
  this.toString();
  return [
    this.inDays,
    this.inHours.remainder(24),
    this.inMinutes.remainder(60),
    this.inSeconds.remainder(60)
  ].map((seg) {
    return seg.toString().padLeft(2, '0');
  }).join(':');
}