ArcaneFeatureRow constructor

const ArcaneFeatureRow({
  1. required String feature,
  2. bool included = true,
  3. String? includedColor,
  4. String? excludedColor,
  5. Key? key,
})

Implementation

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