DottedBorder constructor

const DottedBorder({
  1. Key? key,
  2. required Widget child,
  3. Color color = Colors.black,
  4. double strokeWidth = 1,
  5. EdgeInsets padding = const EdgeInsets.all(0),
  6. Radius radius = const Radius.circular(0),
})

Implementation

const DottedBorder({
  super.key,
  required this.child,
  this.color = Colors.black,
  this.strokeWidth = 1,
  this.padding = const EdgeInsets.all(0),
  this.radius = const Radius.circular(0),
});