join method

Implementation

Contract join(List<ValidationNotifiable> itens) {
  itens.forEach(
    (f) {
      if (f.invalid) {
        addNotifications(f.notifications);
      }
    },
  );
  return this;
}