attachEventBus method

void attachEventBus(
  1. EventBus bus
)

Attach an event bus so nested seeders share the same emitter.

Implementation

void attachEventBus(EventBus bus) {
  eventBus ??= bus;
}