combine method

BaseInjector combine(
  1. BaseInjector other
)

Implementation

BaseInjector combine(BaseInjector other) => BaseInjector(
      injectors: {
        ..._injectors,
        ...other._injectors,
      },
      other: _other ?? other._other,
    );