getSyncedItems method

Future<List<TautulliSyncedItem>> getSyncedItems({
  1. String? machineId,
  2. int? userId,
})

Handler for get_synced_items.

Get a list of synced items on the Plex Media Server.

Optional Parameters:

  • machineId: The machine identifier to check for synced items
  • userId: The user ID to fetch synced items for

Implementation

Future<List<TautulliSyncedItem>> getSyncedItems({
    String? machineId,
    int? userId,
}) async => _commandGetSyncedItems(_client, machineId: machineId, userId: userId);