chatBskyModerationUpdateActorAccess function
Implementation
Future<XRPCResponse<EmptyData>> chatBskyModerationUpdateActorAccess({
required String actor,
required bool allowAccess,
String? ref,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.chatBskyModerationUpdateActorAccess,
headers: {'Content-type': 'application/json', ...?$headers},
body: {
...?$unknown,
'actor': actor,
'allowAccess': allowAccess,
if (ref != null) 'ref': ref,
},
);