listCurrentUserFollowing method

Stream<User> listCurrentUserFollowing()

Implementation

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