drawComment method

void drawComment(
  1. String comment
)

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(),
      ),
    );