BaseInjector constructor

BaseInjector({
  1. Map<Type, InitInjection>? injectors,
  2. InitInjection? other,
})

Implementation

BaseInjector({Map<Type, InitInjection>? injectors, InitInjection? other}) {
  if (injectors != null) {
    _injectors.addAll(injectors);
  }

  _other = other;
}