I am creating dynamic FormGroup and FormArray from the service response, Now I wanted to validate the form array if any one of the input has value else I don't want to validate.
this.billingForm = this._fb.group({
itemRows: this._fb.array([this.initItemRows()])
});
initItemRows() {
return this._fb.group({
Id: '',
orgName: '',
billing: this._fb.array([]),
payment: this._fb.array([])
});
}