merge method
Merges another validation context into this one
Implementation
void merge(ValidationContext other) {
_errors.addAll(other.errors);
_warnings.addAll(other.warnings);
}
Merges another validation context into this one
void merge(ValidationContext other) {
_errors.addAll(other.errors);
_warnings.addAll(other.warnings);
}