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