DotWidget constructor

const DotWidget({
  1. Key? key,
  2. required double size,
  3. Color? color,
  4. Widget? child,
})

Implementation

const DotWidget({
  Key? key,
  required this.size,
  this.color,
  this.child,
}) : super(key: key);