getComment method

String? getComment()

Implementation

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