Returns the current playback position in seconds.
Future<double> getCurrentTime() async { final v = await _invoke<double>('getCurrentTime'); return v ?? 0.0; }