setComment method

void setComment(
  1. String? comment
)

Implementation

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