getConvoAvailability method
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>> getConvoAvailability({
required List<String> members,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyConvoGetConvoAvailability(
members: members,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);