getDurationReminder property

String get getDurationReminder

Implementation

String get getDurationReminder {
  if (toString().length == 1) {
    return '0$this';
  } else {
    return '$this';
  }
}