ProjectRoleInfo constructor

ProjectRoleInfo({
  1. required ProjectRole role,
  2. required bool canCreateRooms,
  3. required bool canCreateAgents,
  4. required bool canUseLlmProxy,
  5. required bool isAdmin,
  6. required bool isDeveloper,
})

Implementation

ProjectRoleInfo({
  required this.role,
  required this.canCreateRooms,
  required this.canCreateAgents,
  required this.canUseLlmProxy,
  required this.isAdmin,
  required this.isDeveloper,
});