fromJson static method
Returns a new UpdateInboxReplierOptions instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static UpdateInboxReplierOptions? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
// Ensure that the map contains the required keys.
// Note 1: the values aren't checked for validity beyond being non-null.
// Note 2: this code is stripped in release mode!
assert(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key), 'Required key "UpdateInboxReplierOptions[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "UpdateInboxReplierOptions[$key]" has a null value in JSON.');
});
return true;
}());
return UpdateInboxReplierOptions(
inboxId: mapValueOfType<String>(json, r'inboxId')!,
name: mapValueOfType<String>(json, r'name'),
field: UpdateInboxReplierOptionsFieldEnum.fromJson(json[r'field'])!,
match: mapValueOfType<String>(json, r'match')!,
replyTo: mapValueOfType<String>(json, r'replyTo'),
subject: mapValueOfType<String>(json, r'subject'),
from: mapValueOfType<String>(json, r'from'),
charset: mapValueOfType<String>(json, r'charset'),
isHTML: mapValueOfType<bool>(json, r'isHTML'),
ignoreReplyTo: mapValueOfType<bool>(json, r'ignoreReplyTo'),
body: mapValueOfType<String>(json, r'body'),
templateId: mapValueOfType<String>(json, r'templateId'),
templateVariables: mapCastOfType<String, Object>(json, r'templateVariables') ?? const {},
);
}
return null;
}