ArcaneFeatureRow.included constructor

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

Creates a feature row for an included feature.

Implementation

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