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