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