getAlbumArtist method

String? getAlbumArtist()

Implementation

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