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