Instance constructor

const Instance({
  1. Type inputType = Map<String, dynamic>,
  2. bool singleton = false,
  3. bool isLazy = false,
  4. int? initializationOrder,
  5. bool isAsync = false,
  6. bool awaitInitialization = false,
  7. bool part = false,
})

Implementation

const Instance({
  this.inputType = Map<String, dynamic>,
  this.singleton = false,
  this.isLazy = false,
  this.initializationOrder,
  this.isAsync = false,
  this.awaitInitialization = false,
  this.part = false,
});