LyricLine

data class LyricLine(val text: String, val start: Long? = null, val cues: List<LyricLineCue>? = null)

Lyric model.

Constructors

Link copied to clipboard
constructor(text: String, start: Long? = null, cues: List<LyricLineCue>? = null)

Properties

Link copied to clipboard
val cues: List<LyricLineCue>? = null

The time-aligned cues for the song's lyrics.

Link copied to clipboard
val start: Long? = null

The start time in ticks.

Link copied to clipboard

The text of this lyric line.