DashedCircle constructor

const DashedCircle({
  1. Key? key,
  2. required Widget child,
  3. double strokeWidth = 2.0,
  4. double gapSize = 3.0,
  5. Color color = const Color(0xffffffff),
  6. int dashes = 20,
})

Implementation

const DashedCircle({Key? key, required this.child, this.strokeWidth = 2.0, this.gapSize = 3.0, this.color = const Color(0xffffffff), this.dashes = 20}) : super(key: key);