* Sets the minimum value this field can contain. Updates the value to * reflect. * * @param min Minimum value.
(min: number | string | undefined | null)
| 128 | * @param min Minimum value. |
| 129 | */ |
| 130 | setMin(min: number | string | undefined | null) { |
| 131 | this.setMinInternal(min); |
| 132 | this.setValue(this.getValue()); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Sets the minimum value this field can contain. Called internally to avoid |
no test coverage detected