getCD method

String? getCD()

Implementation

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