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