chatBskyConvoUnmuteConvo function
Implementation
Future<XRPCResponse<ConvoUnmuteConvoOutput>> chatBskyConvoUnmuteConvo({
required String convoId,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.chatBskyConvoUnmuteConvo,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'convoId': convoId},
to: const ConvoUnmuteConvoOutputConverter().fromJson,
);