ArcaneStatusBadge.successSolid constructor

const ArcaneStatusBadge.successSolid(
  1. String label, {
  2. ComponentSize size = ComponentSize.md,
  3. Widget? icon,
  4. BadgePosition? position,
  5. Key? key,
})

Creates a success solid badge (green pill, no dot). Use for tags and labels, not status indicators.

Implementation

const ArcaneStatusBadge.successSolid(
  this.label, {
  this.size = ComponentSize.md,
  this.icon,
  this.position,
  super.key,
})  : variant = BadgeVariant.successSolid,
      status = StatusType.success,
      showGlow = false,
      showPulse = false,
      showDot = false,
      accentColor = null,
      showDefaultIcon = false,
      gradient = null,
      background = null,
      borderColor = null,
      labelColor = null;