paint method

  1. @override
void paint(
  1. Canvas canvas
)
override

Draws the shape on the given canvas.

Implementation

@override
void paint(Canvas canvas) {
  if (!_isValid) return;
  super.paint(canvas);
}