unmuteThread method

Future<XRPCResponse<EmptyData>> unmuteThread({
  1. required AtUri root,
  2. Map<String, String>? $headers,
})

Implementation

Future<core.XRPCResponse<core.EmptyData>> unmuteThread({
  required core.AtUri root,
  Map<String, String>? $headers,
}) async =>
    await _ctx.post(
      ns.appBskyGraphUnmuteThread,
      headers: $headers,
      body: {
        'root': root.toString(),
      },
    );