chatBskyConvoGetConvoAvailability function

Future<XRPCResponse<ConvoGetConvoAvailabilityOutput>> chatBskyConvoGetConvoAvailability({
  1. required List<String> members,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);