chatBskyConvoGetConvo function

Future<XRPCResponse<ConvoGetConvoOutput>> chatBskyConvoGetConvo({
  1. required String convoId,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Implementation

Future<XRPCResponse<ConvoGetConvoOutput>> chatBskyConvoGetConvo({
  required String convoId,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.chatBskyConvoGetConvo,
  headers: $headers,
  parameters: {...?$unknown, 'convoId': convoId},
  to: const ConvoGetConvoOutputConverter().fromJson,
);