formatSS property
String
get
formatSS
Formats this duration as ss.
Example:
Duration(seconds: 5).formatSS; // "05"
Implementation
String get formatSS {
return twoDigits(inSeconds);
}
Formats this duration as ss.
Example:
Duration(seconds: 5).formatSS; // "05"
String get formatSS {
return twoDigits(inSeconds);
}