SubZeroDivider constructor

const SubZeroDivider({
  1. Key? key,
  2. SubZeroDividerOrientation orientation = SubZeroDividerOrientation.horizontal,
  3. SubZeroDividerVariant variant = SubZeroDividerVariant.line,
  4. double? thickness,
  5. double? length,
  6. Color? color,
  7. double indent = 0,
  8. double endIndent = 0,
  9. EdgeInsetsGeometry? margin,
})

Implementation

const SubZeroDivider({
  super.key,
  this.orientation = SubZeroDividerOrientation.horizontal,
  this.variant = SubZeroDividerVariant.line,
  this.thickness,
  this.length,
  this.color,
  this.indent = 0,
  this.endIndent = 0,
  this.margin,
});