Gets the current playback position in milliseconds.
@override Future<int> getPosition() async { final result = await methodChannel.invokeMethod<int>('getPosition'); return result ?? 0; }