callAddTrack method
Invokes org.mpris.MediaPlayer2.TrackList.AddTrack()
Implementation
Future<void> callAddTrack(String Uri, String AfterTrack, bool SetAsCurrent,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
await callMethod(
'org.mpris.MediaPlayer2.TrackList',
'AddTrack',
[
DBusString(Uri),
DBusObjectPath(AfterTrack),
DBusBoolean(SetAsCurrent)
],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
}