drawPoint method

void drawPoint({
  1. required double x,
  2. required double y,
})

DrawPoint() draws a point using the current fill color.

  • x target x coordinate
  • y target y coordinate

Implementation

void drawPoint({required double x, required double y}) =>
    _magickWandBindings.DrawPoint(_wandPtr, x, y);