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