ContextValue constructor

ContextValue({
  1. LocalizedString? label,
  2. String? severity,
  3. String? unit,
  4. double? value,
})

Implementation

ContextValue({
  this.label,
  this.severity,
  this.unit,
  this.value,
});