SDivider constructor

const SDivider({
  1. Key? key,
  2. double? lineLength,
  3. double? lineThickness,
  4. Color? lineColor,
  5. double? lineOpacity,
  6. EdgeInsetsGeometry widthPadding = EdgeInsets.zero,
  7. bool isVertical = false,
})

Implementation

const SDivider({
  super.key,
  this.lineLength,
  this.lineThickness,
  this.lineColor,
  this.lineOpacity,
  this.widthPadding = EdgeInsets.zero,
  this.isVertical = false,
});