AgCustomDividerWidget constructor

const AgCustomDividerWidget({
  1. Key? key,
  2. double weight = 1.0,
  3. Color color = Colors.black,
  4. DividerStyle style = DividerStyle.plainLine,
  5. List<Color>? colorList,
  6. int? spacing = 6,
  7. double endIndent = 0,
  8. double indent = 0,
  9. StrokeCap strokeCap = StrokeCap.square,
})

Implementation

const AgCustomDividerWidget({
  super.key,
  this.weight = 1.0,
  this.color = Colors.black,
  this.style = DividerStyle.plainLine,
  this.colorList,
  this.spacing = 6,
  this.endIndent = 0,
  this.indent = 0,
  this.strokeCap = StrokeCap.square,
});