addAll method

void addAll(
  1. Iterable<ValidationErrorUtils> e
)

Appends all errors from e.

Implementation

// ignore: saropa_lints/prefer_spread_over_addall -- appends into a persistent mutable field, not a one-shot list construction
void addAll(Iterable<ValidationErrorUtils> e) => _list.addAll(e);