Get the current playback position
Future<Duration> getCurrentTime() async { final currentTimeInMilliseconds = await _nativeApi.getCurrentTime(); return Duration(milliseconds: currentTimeInMilliseconds); }