getStreamTypeByTopTenPlatforms method

Future<TautulliGraphData> getStreamTypeByTopTenPlatforms({
  1. int? timeRange,
  2. int? userId,
  3. bool? grouping,
  4. TautulliGraphYAxis? yAxis,
})

Handler for get_stream_type_by_top_10_platforms.

Get graph data by stream type by top 10 platforms.

Optional Parameters:

  • timeRange: The amount of days to fetch data for. Minimum value of 1, anything below 1 will return the default time range (30 days)
  • userId: User ID to filter the data for
  • grouping: Group data
  • yAxis: What key to use for the Y-Axis in the data

Implementation

Future<TautulliGraphData> getStreamTypeByTopTenPlatforms({
    int? timeRange,
    int? userId,
    bool? grouping,
    TautulliGraphYAxis? yAxis,
}) async => _commandGetStreamTypeByTopTenPlatforms(_client, timeRange: timeRange, userId: userId, grouping: grouping, yAxis: yAxis);