PinDotStyle constructor

const PinDotStyle({
  1. double size = 16,
  2. double spacing = 10,
  3. required Color filledColor,
  4. required Color emptyColor,
  5. Color errorFilledColor = const Color(0xFFF44336),
  6. Color errorEmptyColor = const Color(0x33F44336),
  7. BoxShape shape = BoxShape.circle,
})

Implementation

const PinDotStyle({
  this.size = 16,
  this.spacing = 10,
  required this.filledColor,
  required this.emptyColor,
  this.errorFilledColor = const Color(0xFFF44336),
  this.errorEmptyColor = const Color(0x33F44336),
  this.shape = BoxShape.circle,
});