DrawDot.circular constructor

const DrawDot.circular({
  1. Key? key,
  2. required double dotSize,
  3. required Color color,
})

Implementation

const DrawDot.circular({
  super.key,
  required double dotSize,
  required this.color,
})  : width = dotSize,
      height = dotSize;