FxDottedLine constructor
FxDottedLine({})
Implementation
FxDottedLine({
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) {
assert(width != null || height != null || child != null);
}