Settings.defaults constructor

const Settings.defaults({
  1. bool includeGetters = false,
  2. bool autoInclude = false,
  3. List<String> exclude = const [],
  4. List<String> include = const [],
})

Implementation

const Settings.defaults({
  this.includeGetters = false,
  this.autoInclude = false,
  this.exclude = const [],
  this.include = const [],
});