HiddenDots constructor

const HiddenDots({
  1. Key? key,
  2. required String values,
  3. required int pinLength,
  4. bool? isCorrect,
  5. Color? disableDotColor,
  6. Color? wrongPinColor,
  7. Color? fillPinColor,
  8. BoxShape? dotsShape,
})

Implementation

const HiddenDots({
  super.key,
  required this.values,
  required this.pinLength,
  this.isCorrect,
  this.disableDotColor,
  this.wrongPinColor,
  this.fillPinColor,
  this.dotsShape,
});