add method

void add(
  1. T object
)

Implementation

void add(T object) {
  _pendingAdditions.add(object);
  additionsDirty = true;
}