veryThickLinePaint method

Paint veryThickLinePaint(
  1. Color theColor
)

Implementation

Paint veryThickLinePaint(Color theColor) =>
    Paint()
      ..color = theColor
      ..strokeCap = StrokeCap.round
      ..style = PaintingStyle.stroke
      ..strokeWidth = 5.0;