DependencyRegistration constructor

const DependencyRegistration({
  1. String? instanceName,
  2. Set<String>? environments,
  3. Type? classType,
  4. Type? asType,
  5. Function? resolveUsing,
  6. Function? dispose,
  7. Type? param1,
  8. Type? param2,
})

Implementation

const DependencyRegistration({
  this.instanceName,
  this.environments,
  this.classType,
  this.asType,
  this.resolveUsing,
  this.dispose,
  this.param1,
  this.param2,
});