DottedBorder constructor

const DottedBorder({
  1. Key? key,
  2. required Widget child,
  3. BorderType borderType = BorderType.rReact,
  4. double strokeWidth = 1,
  5. Color color = Colors.black,
  6. List<double> dashPattern = const [5, 5],
  7. Radius radius = const Radius.circular(0),
  8. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

const DottedBorder({
  super.key,
  required this.child,
  this.borderType = BorderType.rReact,
  this.strokeWidth = 1,
  this.color = Colors.black,
  this.dashPattern = const [5, 5],
  this.radius = const Radius.circular(0),
  this.padding = EdgeInsets.zero,
});