ConsoleProfileStarted

@Serializable
data class ConsoleProfileStarted(val id: String, val location: Location, val title: String? = null) : ProfilerEvent(source)

Sent when new profile recording is started using console.profile() call.

Official doc

Constructors

Link copied to clipboard
constructor(id: String, location: Location, title: String? = null)

Properties

Link copied to clipboard
val id: String
Link copied to clipboard

Location of console.profile().

Link copied to clipboard
val title: String? = null

Profile title passed as an argument to console.profile().