drawPoint abstract method
void
drawPoint({})
Renders a simple point.
point
The x, y coordinates of the point.
radius
The radius of the point.
fill
Fill color for the point.
stroke
and strokeWidthPx
configure the color and thickness of the
outer edge of the point. Both must be provided together for a line to
appear.
blendMode
Blend mode to be used when drawing this point on canvas.
Implementation
void drawPoint(
{required Point point,
required double radius,
Color? fill,
Color? stroke,
double? strokeWidthPx,
BlendMode? blendMode});