Instance constructor

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

Implementation

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