Lyrics constructor

Lyrics({
  1. required String text,
  2. required String source,
  3. String? language,
  4. required String songName,
  5. required String artistName,
})

Implementation

Lyrics({
  required this.text,
  required this.source,
  this.language,
  required this.songName,
  required this.artistName,
});