drawComment method
DrawComment() adds a comment to a vector output stream.
Implementation
void drawComment(String comment) => using(
(Arena arena) => _magickWandBindings.DrawComment(
_wandPtr,
comment.toNativeUtf8(allocator: arena).cast(),
),
);