AgCustomDivider constructor

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

Implementation

AgCustomDivider({
  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,
});