seconds property

Duration seconds

Implementation

Duration get seconds {
  var millis = this % 1 * 1000;
  return Duration(seconds: toInt(), milliseconds: millis.toInt());
}