ProDivider constructor

const ProDivider({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Color? color,
  5. 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);