AuthOrganizationTeamsOptions constructor

const AuthOrganizationTeamsOptions({
  1. bool enabled = false,
  2. bool createDefaultTeam = true,
  3. String defaultTeamName = 'Default',
  4. bool allowRemovingLastTeam = false,
  5. int? teamLimit,
  6. int? teamMemberLimit,
})

Creates an instance of AuthOrganizationTeamsOptions.

Implementation

const AuthOrganizationTeamsOptions({
  this.enabled = false,
  this.createDefaultTeam = true,
  this.defaultTeamName = 'Default',
  this.allowRemovingLastTeam = false,
  this.teamLimit,
  this.teamMemberLimit,
});