DottedBorder constructor

const DottedBorder({
  1. LinePosition linePosition = LinePosition.bottom,
  2. List<int> dash = const <int>[5, 5],
  3. Color color = Colors.grey,
  4. Shape shape = Shape.line,
  5. double strokeWidth = 1,
  6. BorderRadius? borderRadius,
})

Implementation

const DottedBorder({
  this.linePosition = LinePosition.bottom,
  this.dash = const <int>[5, 5],
  this.color = Colors.grey,
  this.shape = Shape.line,
  this.strokeWidth = 1,
  this.borderRadius,
});