(private _fb: FormBuilder)
| 402 | form: FormGroup; |
| 403 | |
| 404 | constructor(private _fb: FormBuilder) { |
| 405 | this.form = this._getForm(); |
| 406 | } |
| 407 | |
| 408 | private _getForm() { |
| 409 | return this._fb.group({'input': 'value'}); |
nothing calls this directly
no test coverage detected