getPlaybackInfo method
Get playback information for a specific player index
Implementation
@override
Future<Map<String, dynamic>?> getPlaybackInfo(int index) async {
final info = await methodChannel.invokeMethod<Map<String, dynamic>>(
'getPlaybackInfo',
{'index': index},
);
return info;
}