AppDivider.vertical constructor

const AppDivider.vertical({
  1. Key? key,
  2. double? thickness,
  3. Color? color,
  4. double? height,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
})

Creates a vertical divider.

Implementation

const AppDivider.vertical({
  super.key,
  this.thickness,
  this.color,
  this.height,
  this.padding,
  this.margin,
}) : orientation = Axis.vertical,
     text = null,
     textStyle = null,
     indent = null,
     endIndent = null;