listCurrentUserFollowers method

Stream<User> listCurrentUserFollowers()

List current user followers.

API docs: https://developer.github.com/v3/users/followers/#list-followers-of-a-user

Implementation

Stream<User> listCurrentUserFollowers() => PaginationHelper(
  github,
).objects('GET', '/user/followers', User.fromJson, statusCode: 200);