getProfile method

Future<XRPCResponse<ProfileViewDetailed>> getProfile({
  1. required String actor,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth.

Implementation

Future<XRPCResponse<ProfileViewDetailed>> getProfile({
  required String actor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyActorGetProfile(
  actor: actor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);