getUsersInProject method

Future<List<Map<String, dynamic>>> getUsersInProject(
  1. String projectId, {
  2. String? email,
  3. int count = 100,
  4. int offset = 0,
  5. String? filter,
})

Implementation

Future<List<Map<String, dynamic>>> getUsersInProject(
  String projectId, {
  String? email,
  int count = 100,
  int offset = 0,
  String? filter,
}) async {
  final page = await getUsersInProjectPage(projectId, email: email, count: count, offset: offset, filter: filter);
  return page.users;
}