···66 /// Get followers for a DID
77 ///
88 /// [did] The DID to get followers for
99- Future<FollowersResponse> getFollowers(String did);
99+ /// [cursor] Optional cursor for pagination
1010+ Future<FollowersResponse> getFollowers(String did, {String? cursor});
10111112 /// Get follows for a DID
1213 ///
1314 /// [did] The DID to get follows for
1414- Future<FollowsResponse> getFollows(String did);
1515+ /// [cursor] Optional cursor for pagination
1616+ Future<FollowsResponse> getFollows(String did, {String? cursor});
15171618 /// Follow a user
1719 ///