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