Settings.defaults constructor

const Settings.defaults({
  1. bool registerAsImplementation = false,
  2. List<String> priorities = const [],
  3. Map<String, List<String>> groups = const {},
  4. List<String> factories = const [],
  5. List<String> lazySingletons = const [],
  6. List<String> singletons = const [],
  7. RegisterType registerDefault = RegisterType.factory,
  8. bool autoRegister = false,
  9. List<String> register = const [],
  10. List<String> doNotRegister = const [],
  11. List<String> ignoreForFile = const [],
})

Implementation

const Settings.defaults({
  this.registerAsImplementation = false,
  this.priorities = const [],
  this.groups = const {},
  this.factories = const [],
  this.lazySingletons = const [],
  this.singletons = const [],
  this.registerDefault = RegisterType.factory,
  this.autoRegister = false,
  this.register = const [],
  this.doNotRegister = const [],
  this.ignoreForFile = const [],
});