Get current audio position in seconds.
@override Future<double> getCurrentPosition() async { final result = await methodChannel.invokeMethod<double>('getCurrentPosition'); return result ?? 0.0; }