()
| 201 | */ |
| 202 | @Input() |
| 203 | get required(): boolean { |
| 204 | return this._required ?? this.ngControl?.control?.hasValidator(Validators.required) ?? false; |
| 205 | } |
| 206 | set required(value: BooleanInput) { |
| 207 | this._required = coerceBooleanProperty(value); |
| 208 | } |
no test coverage detected