fromJson static method
Returns a new EmailProjection instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static EmailProjection? 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 "EmailProjection[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "EmailProjection[$key]" has a null value in JSON.');
});
return true;
}());
return EmailProjection(
id: mapValueOfType<String>(json, r'id')!,
from: mapValueOfType<String>(json, r'from'),
subject: mapValueOfType<String>(json, r'subject'),
inboxId: mapValueOfType<String>(json, r'inboxId')!,
attachments: json[r'attachments'] is List
? (json[r'attachments'] as List).cast<String>()
: const [],
createdAt: mapDateTime(json, r'createdAt', '')!,
to: json[r'to'] is List
? (json[r'to'] as List).cast<String>()
: const [],
bcc: json[r'bcc'] is List
? (json[r'bcc'] as List).cast<String>()
: const [],
cc: json[r'cc'] is List
? (json[r'cc'] as List).cast<String>()
: const [],
read: mapValueOfType<bool>(json, r'read')!,
domainId: mapValueOfType<String>(json, r'domainId'),
bodyExcerpt: mapValueOfType<String>(json, r'bodyExcerpt'),
teamAccess: mapValueOfType<bool>(json, r'teamAccess')!,
bodyMD5Hash: mapValueOfType<String>(json, r'bodyMD5Hash'),
);
}
return null;
}