OudsDivider.vertical constructor

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

Creates a vertical divider.

Implementation

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