callActivatePlaylist method

Future<void> callActivatePlaylist(
  1. String PlaylistId, {
  2. bool noAutoStart = false,
  3. bool allowInteractiveAuthorization = false,
})

Invokes org.mpris.MediaPlayer2.Playlists.ActivatePlaylist()

Implementation

Future<void> callActivatePlaylist(String PlaylistId,
    {bool noAutoStart = false,
    bool allowInteractiveAuthorization = false}) async {
  await callMethod('org.mpris.MediaPlayer2.Playlists', 'ActivatePlaylist',
      [DBusObjectPath(PlaylistId)],
      replySignature: DBusSignature(''),
      noAutoStart: noAutoStart,
      allowInteractiveAuthorization: allowInteractiveAuthorization);
}