setTitle method

void setTitle(
  1. String? title
)

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);
    }
  }
}