()
| 248 | /** Whether step has an error. */ |
| 249 | @Input({transform: booleanAttribute}) |
| 250 | get hasError(): boolean { |
| 251 | const customError = this._customError(); |
| 252 | return customError == null ? this._getDefaultError() : customError; |
| 253 | } |
| 254 | set hasError(value: boolean) { |
| 255 | this._customError.set(value); |
| 256 | } |
no test coverage detected