FDottedLine constructor
const
FDottedLine({})
FDottedLine provides developers with the ability to create dashed lines. It also supports creating a dashed border for a Widget. Support for controlling the thickness, spacing, and corners of the dotted border.
Implementation
const FDottedLine({
final Key? key,
this.color = Colors.black,
this.height,
this.width,
this.dottedLength = 5.0,
this.space = 3.0,
this.strokeWidth = 1.0,
this.corner,
this.child,
}) : super(key: key);