leaveConvo method

Future<XRPCResponse<LeaveConvoOutput>> leaveConvo({
  1. required String convoId,
})

Implementation

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