listCurrentUserFollowing method

Stream<User> listCurrentUserFollowing()

List current user following

API docs: https://developer.github.com/v3/users/followers/#list-users-followed-by-the-authenticated-user

Implementation

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