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