internalLinkTypeActiveSessions property

InternalLinkTypeActiveSessions? internalLinkTypeActiveSessions

The link is a link to the active sessions section of the application. Use getActiveSessions to handle the link

Implementation

InternalLinkTypeActiveSessions? get internalLinkTypeActiveSessions {
  if (this is InternalLinkTypeActiveSessions) {
    return this as InternalLinkTypeActiveSessions;
  }
  return null;
}