ArcaneSpecRow.highlight constructor

const ArcaneSpecRow.highlight({
  1. required String label,
  2. required String value,
  3. String? labelColor,
  4. String? valueColor,
  5. String? fontSize,
  6. Key? key,
})

Creates a highlighted spec row (value uses primary color).

Implementation

const ArcaneSpecRow.highlight({
  required this.label,
  required this.value,
  this.labelColor,
  this.valueColor,
  this.fontSize,
  super.key,
}) : highlight = true;