VerticalDivider constructor
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);
Creates a material design divider.
The width must be positive.
const VerticalDivider({
Key key,
this.width = 16.0,
this.indent = 0.0,
this.color
}) : assert(width >= 0.0),
super(key: key);