listCurrentUserFollowers method

Stream<User> listCurrentUserFollowers()

Implementation

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