FrameResourceTree

@Serializable
data class FrameResourceTree(val frame: Frame, val childFrames: List<FrameResourceTree>? = null, val resources: List<FrameResource>)

Information about the Frame hierarchy along with their cached resources.

Official doc

Constructors

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

Properties

Link copied to clipboard

Child frames.

Link copied to clipboard

Frame information for this tree item.

Link copied to clipboard

Information about frame resources.