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