FollowerApi constructor
Constructs a FollowerApi instance.
dio is the Dio client for making HTTP requests.
baseUrl is the base URL of the API.
apiKey is kept for API consistency but not used by follower endpoints.
Implementation
const FollowerApi({
required Dio dio,
required String baseUrl,
required String apiKey,
}) : _dio = dio,
_baseUrl = baseUrl;