getUsersTable method

Future<TautulliUsersTable> getUsersTable({
  1. bool? grouping,
  2. TautulliUsersOrderColumn? orderColumn,
  3. TautulliOrderDirection? orderDirection,
  4. int? start,
  5. int? length,
  6. String? search,
})

Handler for get_users_table.

Get the data on Tautulli users table.

Optional Parameters:

  • grouping: Group users
  • orderColumn: The column order key for sorting the user records
  • orderDirection: The direction to sort the user records
  • start: Which row to start at (default: 0)
  • length: Number of records to return (default: 25)
  • search: A string to search for

Implementation

Future<TautulliUsersTable> getUsersTable({
    bool? grouping,
    TautulliUsersOrderColumn? orderColumn,
    TautulliOrderDirection? orderDirection,
    int? start,
    int? length,
    String? search,
}) async => _commandGetUsersTable(
    _client,
    grouping: grouping,
    orderColumn: orderColumn,
    orderDirection: orderDirection,
    start: start,
    length: length,
    search: search,
);