appBskyGraphUnmuteActor function

Future<XRPCResponse<EmptyData>> appBskyGraphUnmuteActor({
  1. required String actor,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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},
);