UserQuery constructor

UserQuery({
  1. Database? database,
  2. List<String>? userGroupsId,
  3. String? filterMode,
  4. bool includeChildren = false,
  5. bool userOrgUnits = false,
})

Implementation

UserQuery(
    {Database? database,
    this.userGroupsId,
    this.filterMode,
    this.includeChildren = false,
    this.userOrgUnits = false})
    : super(database: database);