ListUsersResponse constructor

ListUsersResponse({
  1. required List<User> users,
  2. bool? isTruncated,
  3. String? marker,
})

Implementation

ListUsersResponse({
  required this.users,
  this.isTruncated,
  this.marker,
});