ProDivider constructor
const
ProDivider({
- Key? key,
- double? height,
- double? width,
- Color? color,
- EdgeInsets? margin,
Use this widget if you need a divider. By default the width of the divider is half of the screen width.
Implementation
const ProDivider({
Key? key,
this.height,
this.width,
this.color,
this.margin,
}) : super(key: key);