listUsers method
- String org
Lists all of the users in an organization
API docs: https://developer.github.com/v3/orgs/teams/#list-user-teams
Implementation
Stream<User> listUsers(String org) {
return PaginationHelper(
github,
).objects('GET', '/orgs/$org/members', User.fromJson);
}