ApplicationRole constructor
ApplicationRole({
- List<
String> ? defaultGroups, - List<
GroupName> ? defaultGroupsDetails, - bool? defined,
- List<
GroupName> ? groupDetails, - List<
String> ? groups, - bool? hasUnlimitedSeats,
- String? key,
- String? name,
- int? numberOfSeats,
- bool? platform,
- int? remainingSeats,
- bool? selectedByDefault,
- int? userCount,
- String? userCountDescription,
Implementation
ApplicationRole(
{List<String>? defaultGroups,
List<GroupName>? defaultGroupsDetails,
bool? defined,
List<GroupName>? groupDetails,
List<String>? groups,
bool? hasUnlimitedSeats,
this.key,
this.name,
this.numberOfSeats,
bool? platform,
this.remainingSeats,
bool? selectedByDefault,
this.userCount,
this.userCountDescription})
: defaultGroups = defaultGroups ?? [],
defaultGroupsDetails = defaultGroupsDetails ?? [],
defined = defined ?? false,
groupDetails = groupDetails ?? [],
groups = groups ?? [],
hasUnlimitedSeats = hasUnlimitedSeats ?? false,
platform = platform ?? false,
selectedByDefault = selectedByDefault ?? false;