getListsWithMembership method

Future<XRPCResponse<GraphGetListsWithMembershipOutput>> getListsWithMembership({
  1. required String actor,
  2. int? limit,
  3. String? cursor,
  4. List<GraphGetListsWithMembershipPurposes>? purposes,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

Enumerates the lists created by the session user, and includes membership information about actor in those lists. Only supports curation and moderation lists (no reference lists, used in starter packs). Requires auth.

Implementation

Future<XRPCResponse<GraphGetListsWithMembershipOutput>>
getListsWithMembership({
  required String actor,
  int? limit,
  String? cursor,
  List<GraphGetListsWithMembershipPurposes>? purposes,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyGraphGetListsWithMembership(
  actor: actor,
  limit: limit,
  cursor: cursor,
  purposes: purposes,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);