SpecEntry constructor

const SpecEntry({
  1. required String label,
  2. required String value,
  3. bool highlight = false,
})

Implementation

const SpecEntry({
  required this.label,
  required this.value,
  this.highlight = false,
});