updateActorAccess method
Implementation
Future<core.XRPCResponse<core.EmptyData>> updateActorAccess({
required String actor,
required bool allowAccess,
String? ref,
}) async =>
await _ctx.post(
ns.chatBskyModerationUpdateActorAccess,
body: {
'actor': actor,
'allowAccess': allowAccess,
'ref': ref,
},
);