getLyric method
Implementation
String? getLyric() {
return switch (_format) {
Format.mp3 => _mp3file!.getLyric(),
Format.flac => _flacFile!.getLyric(),
_ => null,
};
}
String? getLyric() {
return switch (_format) {
Format.mp3 => _mp3file!.getLyric(),
Format.flac => _flacFile!.getLyric(),
_ => null,
};
}