chatBskyConvoGetConvoAvailability function
Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.
Implementation
Future<XRPCResponse<ConvoGetConvoAvailabilityOutput>>
chatBskyConvoGetConvoAvailability({
required List<String> members,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.chatBskyConvoGetConvoAvailability,
headers: $headers,
parameters: {...?$unknown, 'members': members},
to: const ConvoGetConvoAvailabilityOutputConverter().fromJson,
);