OudsDivider.horizontal constructor

const OudsDivider.horizontal({
  1. Key? key,
  2. OudsDividerColor color = OudsDividerColor.defaultColor,
  3. double length = double.infinity,
  4. double? thickness,
  5. EdgeInsetsGeometry? margin,
})

Creates a horizontal divider.

Implementation

const OudsDivider.horizontal({
  super.key,
  this.color = OudsDividerColor.defaultColor,
  this.length = double.infinity,
  this.thickness,
  this.margin,
}) : orientation = Axis.horizontal;