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