DottedBorderWidget constructor

DottedBorderWidget({
  1. Color? color = Colors.black,
  2. double dotsWidth = 5.0,
  3. double gap = 3.0,
  4. double radius = 0,
  5. double strokeWidth = 1.0,
  6. required Widget child,
  7. EdgeInsets? padding,
  8. Key? key,
})

Implementation

DottedBorderWidget({
  this.color = Colors.black,
  this.dotsWidth = 5.0,
  this.gap = 3.0,
  this.radius = 0,
  this.strokeWidth = 1.0,
  required this.child,
  this.padding,
  super.key,
});