DotPainter constructor

DotPainter()

Implementation

DotPainter() {
  // get color and radius dynamically
  _paint = Paint()
    ..color = Colors.green
    ..strokeWidth = 10.0
    ..style = PaintingStyle.fill;
}