LyricLine constructor

LyricLine({
  1. required Duration start,
  2. Duration? end,
  3. required String text,
  4. String? translation,
  5. List<LyricWord>? words,
})

Implementation

LyricLine({
  required this.start,
  this.end,
  required this.text,
  this.translation,
  this.words,
});