getConvo method

Future<XRPCResponse<GetConvoOutput>> getConvo({
  1. required String convoId,
})

Implementation

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