BooleanMetric constructor

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

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

Implementation

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