listTeamRepositories method
- int teamId
Lists the repositories that the specified team has access to.
API docs: https://developer.github.com/v3/orgs/teams/#list-team-repos
Implementation
Stream<Repository> listTeamRepositories(int teamId) {
return PaginationHelper(
github,
).objects('GET', '/teams/$teamId/repos', Repository.fromJson);
}