getConvo method
Implementation
Future<core.XRPCResponse<GetConvoOutput>> getConvo({
required String convoId,
}) async =>
await _ctx.get(
ns.chatBskyConvoGetConvo,
parameters: {
'convoId': convoId,
},
to: GetConvoOutput.fromJson,
);