setGenre method

void setGenre(
  1. String? genre
)

Implementation

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