eventTimestamp property

List<double>? eventTimestamp

Returns the value of the eventTimestamp field. Returns null if the field is not defined in the message.

Implementation

List<double>? get eventTimestamp {
  final field = getField(HrEventTimestampField.ID);
  if (field != null && field.isValid()) {
    return field.getValues();
  } else {
    return null;
  }
}
void eventTimestamp=(List<double>? value)

Sets the eventTimestamp field with value. Throws FieldNotDefinedError if the field is not defined in the message.

Implementation

set eventTimestamp(List<double>? value) {
  final field = getField(HrEventTimestampField.ID);

  if (field != null) {
    if (value == null) {
      field.clear();
    } else {
      final values = value;
      field.setValues(values);
    }
  } else {
    throw FieldNotDefinedError(field!.name);
  }
}