Singleton constructor

const Singleton({
  1. bool? signalsReady,
  2. List<Type>? dependsOn,
  3. Function? dispose,
  4. Type? as,
  5. List<String>? env,
  6. String? scope,
  7. int? order,
})

default constructor

Implementation

const Singleton({
  this.signalsReady,
  this.dependsOn,
  this.dispose,
  super.as,
  super.env,
  super.scope,
  super.order,
});