···874874 /// **'Followers'**
875875 String get pageTitleFollowers;
876876877877+ /// Known followers page title
878878+ ///
879879+ /// In en, this message translates to:
880880+ /// **'Known followers'**
881881+ String get pageTitleKnownFollowers;
882882+877883 /// Following page title
878884 ///
879885 /// In en, this message translates to:
···13351341 /// In en, this message translates to:
13361342 /// **'Sending...'**
13371343 String get messageSending;
13441344+13451345+ /// Profile social context when one known follower is displayed
13461346+ ///
13471347+ /// In en, this message translates to:
13481348+ /// **'Followed by {name}'**
13491349+ String profileKnownFollowersOne(String name);
13501350+13511351+ /// Profile social context when two known followers are displayed
13521352+ ///
13531353+ /// In en, this message translates to:
13541354+ /// **'Followed by {firstName} and {secondName}'**
13551355+ String profileKnownFollowersTwo(String firstName, String secondName);
13561356+13571357+ /// Profile social context when one known follower is displayed plus additional known followers
13581358+ ///
13591359+ /// In en, this message translates to:
13601360+ /// **'Followed by {name} and {count, plural, =1{1 other} other{{count} others}}'**
13611361+ String profileKnownFollowersOneAndOthers(String name, int count);
13621362+13631363+ /// Profile social context when two known followers are displayed plus additional known followers
13641364+ ///
13651365+ /// In en, this message translates to:
13661366+ /// **'Followed by {firstName}, {secondName}, and {count, plural, =1{1 other} other{{count} others}}'**
13671367+ String profileKnownFollowersTwoAndOthers(
13681368+ String firstName,
13691369+ String secondName,
13701370+ int count,
13711371+ );
1338137213391373 /// Send button text
13401374 ///
···99 /// [cursor] Optional cursor for pagination
1010 Future<FollowersResponse> getFollowers(String did, {String? cursor});
11111212+ /// Get followers for a DID who are followed by the viewer
1313+ ///
1414+ /// [did] The DID to get known followers for
1515+ /// [cursor] Optional cursor for pagination
1616+ Future<FollowersResponse> getKnownFollowers(String did, {String? cursor});
1717+1218 /// Get follows for a DID
1319 ///
1420 /// [did] The DID to get follows for