LazySingleton constructor

const LazySingleton({
  1. Type? as,
  2. List<String>? env,
  3. Function? dispose,
  4. String? scope,
  5. int? order,
})

default constructor

Implementation

const LazySingleton({
  super.as,
  super.env,
  this.dispose,
  super.scope,
  super.order,
});