SilDashLine constructor

const SilDashLine(
  1. Size size, {
  2. Key? key,
  3. int? direction = DIRECTION_LINEAR,
  4. double? dashLineWidth = 5,
  5. double? spacing = 3,
  6. Color? color = Colors.grey,
  7. Radius? radius = Radius.zero,
})

Implementation

const SilDashLine(this.size,
    {Key? key,
    this.direction = DIRECTION_LINEAR,
    this.dashLineWidth = 5,
    this.spacing = 3,
    this.color = Colors.grey,
    this.radius = Radius.zero})
    : super(key: key);