getStatus method

Future<XRPCResponse<ActorGetStatusOutput>> getStatus({
  1. String? $service,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get the authenticated viewer's chat status: whether their account is chat-disabled and whether their group-membership additions are restricted to accounts they follow.

Implementation

Future<XRPCResponse<ActorGetStatusOutput>> getStatus({
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyActorGetStatus(
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);