* Set the current value of the property. * * @param {*} value The value to set
(value: ValueType)
| 130 | * @param {*} value The value to set |
| 131 | */ |
| 132 | setValue(value: ValueType): void { |
| 133 | this.validateValue(value); |
| 134 | this.value.set(value); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Get the name of this property. |
no test coverage detected