appBskyGraphUnmuteThread function
Unmutes the specified thread. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> appBskyGraphUnmuteThread({
required AtUri root,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.appBskyGraphUnmuteThread,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'root': root.toString()},
);