add method

void add(
  1. T value
)

Implementation

void add(T value) {
  for (final item in elements) {
    item.add(value);
  }
}