currentMillSeconds property

double currentMillSeconds

Implementation

double get currentMillSeconds {
  final c = _currentDuration.inMilliseconds.toDouble();
  if (c >= maxMillSeconds) {
    return maxMillSeconds;
  }
  return c;
}