toM property
String
get
toM
The formatted duration string with the minute as the largest unit.
Implementation
String get toM => toH + (m != 0 ? '${m}m ' : '');
The formatted duration string with the minute as the largest unit.
String get toM => toH + (m != 0 ? '${m}m ' : '');