fetchLyrics method

Future<Map<String, dynamic>> fetchLyrics({
  1. required String title,
  2. required String artist,
  3. int? duration,
})

Fetch lyrics for a song by title and artist

Implementation

Future<Map<String, dynamic>> fetchLyrics({
  required String title,
  required String artist,
  int? duration,
}) {
  throw UnimplementedError('fetchLyrics() has not been implemented.');
}