num position

Source

@override
num get position {
  if (_paused || _stopped || _audioElement == null) {
    return _position;
  } else {
    var currentTime = _audioElement.currentTime;
    return (currentTime - _startTime).clamp(0.0, _duration);
  }
}