addAll method

  1. @override
void addAll(
  1. Iterable<ShapeHitbox> items
)
override

Implementation

@override
void addAll(Iterable<ShapeHitbox> items) {
  for (final item in items) {
    add(item);
  }
}