callGoTo method
Invokes org.mpris.MediaPlayer2.TrackList.GoTo()
Implementation
Future<void> callGoTo(String TrackId,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
await callMethod(
'org.mpris.MediaPlayer2.TrackList', 'GoTo', [DBusObjectPath(TrackId)],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
}