setTitle method
Implementation
void setTitle(String? title) {
if (title != null) {
if (_vorbisCommentBlock != null) {
_vorbisCommentBlock!.setTitle(title);
} else {
final flacMetaBlock = FlacMetaBlock(4, []);
_flacMetaBlocks.add(flacMetaBlock);
_vorbisCommentBlock = VorbisCommentBlock(flacMetaBlock);
_vorbisCommentBlock!.setTitle(title);
}
} else {
if (_vorbisCommentBlock != null) {
_vorbisCommentBlock!.setTitle(title);
}
}
}