ArcaneSpecRow constructor

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

Implementation

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