getAlbum method

String? getAlbum()

Implementation

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