fetchLyrics method
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.');
}