PoolCapacityStatus constructor
const
PoolCapacityStatus({})
Creates a new PoolCapacityStatus.
activeUserSessions Number of user sessions that are currently being used for WorkSpaces in the pool.
actualUserSessions Number of user sessions currently being used for WorkSpaces in the pool.
availableUserSessions Number of user sessions available for WorkSpaces in the pool.
desiredUserSessions Number of user sessions required for WorkSpaces in the pool.
Implementation
const PoolCapacityStatus({
required this.activeUserSessions,
required this.actualUserSessions,
required this.availableUserSessions,
required this.desiredUserSessions,
});