Add presentation layer for GetEmailContent

This commit is contained in:
dab246
2021-08-18 17:50:53 +07:00
committed by Dat H. Pham
parent f8b8f73a86
commit 842072e0d6
33 changed files with 1107 additions and 115 deletions
@@ -121,5 +121,40 @@ class AppLocalizations {
name: 'no_mail_selected',
);
}
String get from_email_address_prefix {
return Intl.message(
'From',
name: 'from_email_address_prefix',
);
}
String get to_email_address_prefix {
return Intl.message(
'To',
name: 'to_email_address_prefix',
);
}
String get unread_email_notification {
return Intl.message(
'new',
name: 'unread_email_notification',
);
}
String get bcc_email_address_prefix {
return Intl.message(
'Bcc',
name: 'bcc_email_address_prefix',
);
}
String get cc_email_address_prefix {
return Intl.message(
'Cc',
name: 'cc_email_address_prefix',
);
}
}