drawHorizontalLine function
Draw the Horizontal line shape marker
Implementation
void drawHorizontalLine(
Path path,
double x,
double y,
double width,
double height,
) {
path.moveTo(x - width / 2, y);
path.lineTo(x + width / 2, y);
}
Draw the Horizontal line shape marker
void drawHorizontalLine(
Path path,
double x,
double y,
double width,
double height,
) {
path.moveTo(x - width / 2, y);
path.lineTo(x + width / 2, y);
}