ArcaneSeparator.vertical constructor

const ArcaneSeparator.vertical({
  1. SeparatorVariant variant = SeparatorVariant.standard,
  2. String? color,
  3. bool dashed = false,
  4. bool decorative = true,
  5. double? margin,
  6. double? height,
  7. Key? key,
})

Creates a vertical separator.

Implementation

const ArcaneSeparator.vertical({
  this.variant = SeparatorVariant.standard,
  this.color,
  this.dashed = false,
  this.decorative = true,
  this.margin,
  this.height,
  super.key,
})  : orientation = SeparatorOrientation.vertical,
      label = null,
      icon = null;