merge method

void merge(
  1. ValidationContext other
)

Merges another validation context into this one

Implementation

void merge(ValidationContext other) {
  _errors.addAll(other.errors);
  _warnings.addAll(other.warnings);
}