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