Injectable constructor

const Injectable({
  1. Type? as,
  2. List<String>? env,
  3. String? scope,
  4. int? order,
  5. bool cache = false,
})

default constructor

Implementation

const Injectable({
  this.as,
  this.env,
  this.scope,
  this.order,
  this.cache = false,
});