filteredBpm property

List<int>? filteredBpm

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

Implementation

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

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

Implementation

set filteredBpm(List<int>? value) {
  final field = getField(HrFilteredBpmField.ID);

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