cadenceZoneName property

String? cadenceZoneName

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

Implementation

String? get cadenceZoneName {
  final field = getField(CadenceZoneNameField.ID);
  if (field != null && field.isValid()) {
    var subField = field.getValidSubField(fields);
    return field.getValue(subField: subField);
  } else {
    return null;
  }
}
void cadenceZoneName=(String? value)

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

Implementation

set cadenceZoneName(String? value) {
  final field = getField(CadenceZoneNameField.ID);

  if (field != null) {
    if (value == null) {
      field.clear();
    } else {
      var subField = field.getValidSubField(fields);
      field.setValue(0, value, subField);
    }
  } else {
    throw FieldNotDefinedError(field!.name);
  }
}