toMs property

String get toMs

The formatted duration string with the millisecond as the largest unit.

Implementation

String get toMs => toS + (ms != 0 ? '${ms}ms ' : '');