listWatched method

Stream<Repository> listWatched()

Lists the repositories the current user is watching.

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

Implementation

Stream<Repository> listWatched() {
  return PaginationHelper(github)
      .objects('GET', '/user/subscriptions', Repository.fromJson);
}