DottedDecoration constructor

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

Implementation

DottedDecoration(
    {this.shape: Shape.line,
    this.linePosition: LinePosition.bottom,
    this.color: const Color(0xFF9E9E9E),
    this.borderRadius,
    this.dash: const <int>[5, 5],
    this.strokeWidth: 1});