ArcaneSeparator.dashed constructor

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

Creates a dashed separator.

Implementation

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