DottedBorder constructor
const
DottedBorder({
- Key? key,
- required Widget child,
- BorderType borderType = BorderType.rReact,
- double strokeWidth = 1,
- Color color = Colors.black,
- List<
double> dashPattern = const [5, 5], - Radius radius = const Radius.circular(0),
- EdgeInsets padding = EdgeInsets.zero,
Implementation
const DottedBorder({
super.key,
required this.child,
this.borderType = BorderType.rReact,
this.strokeWidth = 1,
this.color = Colors.black,
this.dashPattern = const [5, 5],
this.radius = const Radius.circular(0),
this.padding = EdgeInsets.zero,
});