getCover method

Uint8List? getCover()

Implementation

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