97b5be71a7
(cherry picked from commit 1f58a814a5003c3cbd1f3ba287de5bb54565d52f)
24 lines
952 B
Dart
24 lines
952 B
Dart
|
|
class EmailProperty {
|
|
static const String id = 'id';
|
|
static const String keywords = 'keywords';
|
|
static const String size = 'size';
|
|
static const String receivedAt = 'receivedAt';
|
|
static const String hasAttachment = 'hasAttachment';
|
|
static const String preview = 'preview';
|
|
static const String subject = 'subject';
|
|
static const String sentAt = 'sentAt';
|
|
static const String from = 'from';
|
|
static const String to = 'to';
|
|
static const String cc = 'cc';
|
|
static const String bcc = 'bcc';
|
|
static const String replyTo = 'replyTo';
|
|
static const String mailboxIds = 'mailboxIds';
|
|
static const String bodyValues = 'bodyValues';
|
|
static const String htmlBody = 'htmlBody';
|
|
static const String attachments = 'attachments';
|
|
static const String headers = 'headers';
|
|
static const String headerMdnKey = 'Disposition-Notification-To';
|
|
static const String messageId = 'messageId';
|
|
static const String references = 'references';
|
|
} |