getLists method
Enumerates the lists created by a specified account (actor).
Implementation
Future<XRPCResponse<GraphGetListsOutput>> getLists({
required String actor,
int? limit,
String? cursor,
List<GraphGetListsPurposes>? purposes,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetLists(
actor: actor,
limit: limit,
cursor: cursor,
purposes: purposes,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);