DotControl constructor

const DotControl({
  1. Key? key,
  2. Color color = Colors.white,
  3. double padding = 8,
})

Implementation

const DotControl({
  Key? key,
  this.color = Colors.white,
  this.padding = 8,
}) : super(key: key);