fetchLyrics method
Implementation
@override
Future<Map<String, dynamic>> fetchLyrics({
required String songName,
required String artistName,
}) async {
final result = await _methodChannel.invokeMethod('fetchLyrics', {
'songName': songName,
'artistName': artistName,
});
return Map<String, dynamic>.from(result);
}