updateActorAccess method

Future<XRPCResponse<EmptyData>> updateActorAccess({
  1. required String actor,
  2. required bool allowAccess,
  3. String? ref,
})

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