StacDivider constructor

const StacDivider({
  1. double? height,
  2. double? thickness,
  3. double? indent,
  4. double? endIndent,
  5. StacColor? color,
})

Creates a StacDivider.

All properties are optional. The parser will provide appropriate defaults from Flutter's Divider if they are not specified.

Implementation

const StacDivider({
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
});