Connector constructor

const Connector({
  1. required Type type,
  2. dynamic input,
  3. dynamic inputForIndex(
    1. int
    )?,
  4. int count = 1,
  5. String scope = BaseScopes.weak,
  6. bool isAsync = false,
  7. int? initializationOrder,
  8. bool awaitInitialization = false,
  9. bool withoutConnections = false,
  10. bool isLazy = false,
})

Implementation

const Connector({
  required this.type,
  this.input,
  this.inputForIndex,
  this.count = 1,
  this.scope = BaseScopes.weak,
  this.isAsync = false,
  this.initializationOrder,
  this.awaitInitialization = false,
  this.withoutConnections = false,
  this.isLazy = false,
});