currentMillSeconds property

double currentMillSeconds

Gets the current playback position of the voice.

Implementation

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