saveLyrics method

Future<void> saveLyrics({
  1. required String destPath,
  2. String ext = '.lrc',
  3. bool overwite = true,
  4. bool verbose = true,
})

Save the lyrics of all the artist songs

Given the destPath (destination path), each song lyrics will be saved in that location with the song title as the filename

destPath must have '/' as separator

Implementation

Future<void> saveLyrics(
    {required String destPath,
    String ext = '.lrc',
    bool overwite = true,
    bool verbose = true}) async {
  saveLyricsOfMultipleSongs(
      songs: songs,
      destPath: destPath,
      ext: ext,
      overwite: overwite,
      verbose: verbose);
}