ArcaneSeparator constructor

const ArcaneSeparator({
  1. SeparatorOrientation orientation = SeparatorOrientation.horizontal,
  2. SeparatorVariant variant = SeparatorVariant.standard,
  3. String? label,
  4. Widget? icon,
  5. String? color,
  6. bool dashed = false,
  7. bool decorative = true,
  8. double? margin,
  9. double? height,
  10. Key? key,
})

Implementation

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