···66 /// Get a profile by DID
77 ///
88 /// [did] The DID of the profile to get
99- Future<ProfileViewDetailed> getProfile(String did);
99+ /// [useBluesky] Whether to use Bluesky API instead of Spark (default false)
1010+ Future<ProfileViewDetailed> getProfile(String did, {bool useBluesky = false});
10111112 /// Get multiple profiles by their DIDs
1213 ///
1314 /// [dids] A list of DIDs to fetch profiles for
1414- Future<List<ProfileViewDetailed>> getProfiles(List<String> dids);
1515+ /// [useBluesky] Whether to use Bluesky API instead of Spark (default false)
1616+ Future<List<ProfileViewDetailed>> getProfiles(
1717+ List<String> dids, {
1818+ bool useBluesky = false,
1919+ });
15201621 /// Search actors by query string.
1722 ///
···222222 /// [actor] The at-identifier of the actor (handle or DID)
223223 /// [limit] The number of items to return (default 50, max 100)
224224 /// [cursor] Pagination cursor for the next set of results
225225+ /// [bluesky] Whether to fetch from Bluesky API instead of Spark
225226 Future<({List<FeedViewPost> posts, String? cursor})> getActorReposts(
226227 String actor, {
227228 int limit = 50,
228229 String? cursor,
230230+ bool bluesky = false,
229231 });
230232}
···1818 /// Follow a user
1919 ///
2020 /// [did] The DID of the user to follow
2121- Future<FollowUserResponse> followUser(String did);
2121+ /// [bsky] Whether to use Bluesky follow records instead of Spark
2222+ Future<FollowUserResponse> followUser(String did, {bool bsky = false});
22232324 /// Unfollow a user
2425 ///
···2930 ///
3031 /// [did] The DID of the user to toggle follow for
3132 /// [currentFollowUri] The follow URI if following, null if not
3333+ /// [bsky] Whether to use Bluesky follow records instead of Spark
3234 /// Returns the follow URI if now following, null if unfollowed
3333- Future<String?> toggleFollow(String did, AtUri? currentFollowUri);
3535+ Future<String?> toggleFollow(
3636+ String did,
3737+ AtUri? currentFollowUri, {
3838+ bool bsky = false,
3939+ });
34403541 /// Get blocks for a DID
3642 ///