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