Bean constructor

const Bean({
  1. String? name,
  2. String? initMethod,
  3. String? destroyMethod,
})

Implementation

const Bean({
  this.name,
  this.initMethod,
  this.destroyMethod,
});