EmailSettings class

The set of all email subscription/opt-in settings and definitions.

Annotations
  • @JsonSerializable()

Constructors

EmailSettings()
EmailSettings.fromJson(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
optInDefinitions Map<String, EmailOptInDefinition>?
Keyed by the name identifier of the opt-in definition.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
subscriptionDefinitions Map<String, EmailSubscriptionDefinition>?
Keyed by the name identifier of the Subscription definition.
getter/setter pair
views Map<String, EmailViewDefinition>?
Keyed by the name identifier of the View definition.
getter/setter pair

Methods

asyncToJson() Future<Map<String, dynamic>>
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

Static Methods

asyncFromJson(Map<String, dynamic> json) Future<EmailSettings>