setDraw method

void setDraw(
  1. double? x,
  2. double? y
)

Sets the x- and y-position (pixels) where this highlight was last drawn.

@param x @param y

Implementation

void setDraw(double? x, double? y) {
  _drawX = x;
  _drawY = y;
}