formatSS property

String get formatSS

Formats this duration as ss.

Example:

Duration(seconds: 5).formatSS; // "05"

Implementation

String get formatSS {
  return twoDigits(inSeconds);
}