mergeWith method

Store mergeWith(
  1. Store store
)

Copies objects from another store.

Implementation

Store mergeWith(Store store) {
  copyObjectsFrom(store);
  return this;
}