FrameTree

@Serializable
data class FrameTree(val frame: Frame, val childFrames: List<FrameTree>? = null)(source)

Information about the Frame hierarchy.

Official doc

Constructors

Link copied to clipboard
constructor(frame: Frame, childFrames: List<FrameTree>? = null)

Properties

Link copied to clipboard
val childFrames: List<FrameTree>? = null

Child frames.

Link copied to clipboard

Frame information for this tree item.