getConvo method
Implementation
Future<XRPCResponse<GetConvoOutput>> getConvo({
required String convoId,
Map<String, String>? $unknown,
Map<String, String>? $headers,
GetClient? $client,
}) async =>
await _ctx.get<GetConvoOutput>(
ns.chatBskyConvoGetConvo,
headers: $headers,
parameters: {
'convoId': convoId,
...?$unknown,
},
to: const GetConvoOutputConverter().fromJson,
client: $client,
);