chatBskyConvoGetConvo function

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

Implementation

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