DottedBorder constructor

const DottedBorder({
  1. Key? key,
  2. required Widget child,
  3. Color color = Colors.grey,
  4. double strokeWidth = 1.0,
  5. double radius = 0.0,
  6. double dotSpacing = 4.0,
})

Implementation

const DottedBorder({
  super.key,
  required this.child,
  this.color = Colors.grey,
  this.strokeWidth = 1.0,
  this.radius = 0.0,
  this.dotSpacing = 4.0,
});