BreadCrumbs

@Serializable
data class BreadCrumbs(val section: String = NO_VALUE, val subSection: String = NO_VALUE, val subSubSection: String = NO_VALUE)

Data class that represents breadcrumb navigation information.

Breadcrumbs provide hierarchical navigation context in the UI, showing the user's current location within the application's navigation structure.

Constructors

Link copied to clipboard
constructor(section: String = NO_VALUE, subSection: String = NO_VALUE, subSubSection: String = NO_VALUE)

Properties

Link copied to clipboard

The top-level section name, defaults to NO_VALUE if not specified

Link copied to clipboard

The second-level section name, defaults to NO_VALUE if not specified

Link copied to clipboard

The third-level section name, defaults to NO_VALUE if not specified

Functions

Link copied to clipboard

Checks if all breadcrumb sections are empty.

Link copied to clipboard

Checks if any breadcrumb section has a value.