LyricsResponse constructor

LyricsResponse({
  1. required String? lyrics,
  2. required String? snippet,
  3. required String? copyright,
})

Implementation

LyricsResponse({
  required this.lyrics,
  required this.snippet,
  required this.copyright,
});