KinDivider.vertical constructor

const KinDivider.vertical({
  1. Key? key,
  2. double spacing = KinSpacing.sm,
  3. double thickness = 0.5,
  4. double? indent,
  5. double? endIndent,
  6. Color? color,
})

Implementation

const KinDivider.vertical({
  super.key,
  this.spacing = KinSpacing.sm,
  this.thickness = 0.5,
  this.indent,
  this.endIndent,
  this.color,
})  : direction = Axis.vertical,
      label = null;