ArcaneFeatureRow constructor

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

Implementation

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