listStarred method

Stream<Repository> listStarred({
  1. int perPage = 30,
})

Lists all the repos by the current user.

API docs: https://developer.github.com/v3/activity/starring/#list-repositories-being-starred

Implementation

Stream<Repository> listStarred({int perPage = 30}) {
  return PaginationHelper(github).objects(
    'GET',
    '/user/starred',
    Repository.fromJson,
    params: {'per_page': perPage},
  );
}