AutoForwarding.fromJson constructor
AutoForwarding.fromJson(
- Map json_
Implementation
AutoForwarding.fromJson(core.Map json_)
: this(
disposition: json_.containsKey('disposition')
? json_['disposition'] as core.String
: null,
emailAddress: json_.containsKey('emailAddress')
? json_['emailAddress'] as core.String
: null,
enabled: json_.containsKey('enabled')
? json_['enabled'] as core.bool
: null,
);