PortalApplicationDto typedef

PortalApplicationDto = ({String code, String? iconUrl, String? nameEn, String nameZh})

Represents an application exposed by the NTUT Portal application catalog.

Implementation

typedef PortalApplicationDto = ({
  /// Portal SSO target identifier (`apOu`).
  String code,

  /// Chinese display name supplied by the portal.
  String nameZh,

  /// English display name supplied by the portal, when present.
  String? nameEn,

  /// Absolute URL of the icon supplied by the portal, when present.
  String? iconUrl,
});