getConvoAvailability method

Future<XRPCResponse<ConvoGetConvoAvailabilityOutput>> getConvoAvailability({
  1. required List<String> members,
  2. Map<String, String>? $headers,
  3. 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>> getConvoAvailability({
  required List<String> members,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyConvoGetConvoAvailability(
  members: members,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);