ArcaneSeparator.bold constructor

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

Creates a bold (thicker) separator.

Implementation

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