Settings class

Implemented types
Annotations
  • @JsonSerializable.new(fieldRename: FieldRename.snake, constructor: 'defaults')

Constructors

Settings({required bool includeGetters, required bool autoInclude, required List<String> exclude, required List<String> include})
const
Settings.defaults({bool includeGetters = false, bool autoInclude = false, List<String> exclude = const [], List<String> include = const []})
const
Settings.fromJson(Map<String, dynamic> json)
factory

Properties

autoInclude → bool
Whether to automatically include all classes that extend Equatable or use EquatableMixin.
final
exclude → List<String>
A list of class name regex patterns (case sensitive) to use to determine which classes to not generate the props list for.
final
hashCode → int
The hash code for this object.
no setterinherited
include → List<String>
A list of class name regex patterns (case sensitive) to use to determine which classes to generate the props list for.
final
includeGetters → bool
Whether to include getters in the props list.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, dynamic>
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited