Fetches the currently authenticated user's starred gists.
API docs: https://developer.github.com/v3/gists/#list-gists
Stream<Gist> listCurrentUserStarredGists() { return PaginationHelper( github, ).objects('GET', '/gists/starred', Gist.fromJson); }