getList method
Gets a 'view' (with additional context) of a specified list.
Implementation
Future<XRPCResponse<GraphGetListOutput>> getList({
required AtUri list,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetList(
list: list,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);