VerticalDivider constructor

const VerticalDivider({Key key, double width: 16.0, double indent: 0.0, Color color })

Creates a material design divider.

The width must be positive.

Implementation

const VerticalDivider({
  Key key,
  this.width = 16.0,
  this.indent = 0.0,
  this.color
}) : assert(width >= 0.0),
     super(key: key);