getTrends method

Future<XRPCResponse<UnspeccedGetTrendsOutput>> getTrends({
  1. int? limit,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get the current trends on the network

Implementation

Future<XRPCResponse<UnspeccedGetTrendsOutput>> getTrends({
  int? limit,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyUnspeccedGetTrends(
  limit: limit,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);