getProfiles method

Future<XRPCResponse<ActorGetProfilesOutput>> getProfiles({
  1. required List<String> actors,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get detailed profile views of multiple actors.

Implementation

Future<XRPCResponse<ActorGetProfilesOutput>> getProfiles({
  required List<String> actors,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyActorGetProfiles(
  actors: actors,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);