ArcaneFeatureRow.excluded constructor

const ArcaneFeatureRow.excluded({
  1. required String feature,
  2. String? excludedColor,
  3. bool strikethrough = true,
  4. bool circularIcon = true,
  5. String? tooltip,
  6. String? iconSize,
  7. Key? key,
})

Creates a feature row for an excluded feature.

Implementation

const ArcaneFeatureRow.excluded({
  required this.feature,
  this.excludedColor,
  this.strikethrough = true,
  this.circularIcon = true,
  this.tooltip,
  this.iconSize,
  super.key,
})  : included = false,
      includedColor = null;