totalSeconds property

double get totalSeconds

Gets the total seconds including all larger units.

Implementation

double get totalSeconds {
  final totalMs = inMilliseconds;
  return totalMs / 1000;
}