unit property

  1. @TagNumber.new(3)
String get unit

unit in which the metric value is reported. Follows the format described by http://unitsofmeasure.org/ucum.html.

Implementation

@$pb.TagNumber(3)
$core.String get unit => $_getSZ(2);
  1. @TagNumber.new(3)
set unit (String v)

Implementation

@$pb.TagNumber(3)
set unit($core.String v) {
  $_setString(2, v);
}