drawRectangle function

void drawRectangle(
  1. Path path,
  2. double x,
  3. double y,
  4. double width,
  5. double height
)

Draw the Rectangle shape marker

Implementation

void drawRectangle(Path path, double x, double y, double width, double height) {
  path.addRect(Rect.fromLTRB(
      x - width / 2, y - height / 2, x + width / 2, y + height / 2));
}