DottedContainer constructor
const
DottedContainer({
- Key? key,
- required double height,
- required double width,
- LinePosition linePosition = LinePosition.bottom,
- Shape shape = Shape.line,
- Color color = Colors.black,
- BorderRadius borderRadius = BorderRadius.zero,
- List<
int> dash = const [4, 4], - double strokeWidth = 1,
- Widget? child,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- Color? fillColor = Colors.transparent,
- DecorationImage? decorationImage,
Implementation
const DottedContainer(
{super.key,
required this.height,
required this.width,
this.linePosition = LinePosition.bottom,
this.shape = Shape.line,
this.color = Colors.black,
this.borderRadius = BorderRadius.zero,
this.dash = const [4, 4],
this.strokeWidth = 1,
this.child,
this.padding,
this.margin,
this.fillColor = Colors.transparent,
this.decorationImage});