BaseDivider constructor
const
BaseDivider({
- Key? key,
- double? thickness,
- EdgeInsets? margin,
- Color? color,
Implementation
const BaseDivider({
Key? key,
this.thickness,
this.margin,
this.color,
}) : assert(thickness == null || thickness >= 0.0),
super(key: key);