PinDot constructor

const PinDot({
  1. Key? key,
  2. required double size,
  3. required int length,
  4. required Color activeColor,
  5. required Color borderColor,
  6. Color? inactiveColor,
  7. double padding = 16,
  8. TextEditingController? controller,
})

Implementation

const PinDot({
  Key? key,
  required this.size,
  required this.length,
  required this.activeColor,
  required this.borderColor,
  this.inactiveColor,
  this.padding = 16,
  this.controller,
}) : super(key: key);