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