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