RoadmapGroup

data class RoadmapGroup(val column: BoardColumn?, val requests: List<FeatureRequestItem>)(source)

Represents a grouped roadmap category consisting of a kanban BoardColumn and its active FeatureRequestItems.

Rendered as an individual horizontal page and filter chip inside RoadmapBoardScreen.

Constructors

Link copied to clipboard
constructor(column: BoardColumn?, requests: List<FeatureRequestItem>)

Properties

Link copied to clipboard

The backing roadmap BoardColumn, or null for the synthetic "Other" fallback group that aggregates requests with no assigned column.

Link copied to clipboard
val id: String

Unique identifier for the group: returns BoardColumn.id or "uncategorized" when column is null.

Link copied to clipboard

Display name of the group: returns BoardColumn.name or "Other" when column is null.

Link copied to clipboard

List of FeatureRequestItems categorized under column.