Divider constructor

const Divider({Key key, double height: 16.0, double indent: 0.0, Color color })

Creates a material design divider.

The height must be positive.

Implementation

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