Bean constructor

const Bean({
  1. String? name,
  2. LoadingStrategy strategy = LoadingStrategy.direct,
  3. bool isUnnamed = false,
  4. Type? bindingType,
})

Implementation

const Bean({
  this.name,
  this.strategy = LoadingStrategy.direct,
  this.isUnnamed = false,
  this.bindingType,
});