s property

Short-hand for seconds

Implementation

Duration get s {
  final ms = (this * 1000).floor();
  return Duration(milliseconds: ms);
}