getFollowers method
Implementation
Future<List<Following>> getFollowers(
String account, {
String? start,
String? type,
int? limit,
}) async {
final bodyJson = await _fetchPostData(
method: 'condenser_api.get_followers',
params: [account, start, type, limit],
);
final list = bodyJson['result'] as List<dynamic>;
return [
for (final f in list) Following.fromJson(f as Map<String, dynamic>)
];
}