StringMetric constructor

StringMetric(
  1. String name, {
  2. String? value,
  3. String? reason,
})

Creates a StringMetric with the given name, optional value, and optional reason.

Implementation

StringMetric(super.name, {this.value, super.reason});