ChatL10nEn constructor
const
ChatL10nEn({
- String and = 'and',
- String attachmentButtonAccessibilityLabel = 'Send media',
- String emptyChatPlaceholder = 'No messages here yet',
- String fileButtonAccessibilityLabel = 'File',
- String inputPlaceholder = 'Message',
- String isTyping = 'is typing...',
- String others = 'others',
- String sendButtonAccessibilityLabel = 'Send',
- String unreadMessagesLabel = 'Unread messages',
Creates English l10n. Use this constructor if you want to override only a couple of properties, otherwise create a new class which extends ChatL10n.
Implementation
const ChatL10nEn({
super.and = 'and',
super.attachmentButtonAccessibilityLabel = 'Send media',
super.emptyChatPlaceholder = 'No messages here yet',
super.fileButtonAccessibilityLabel = 'File',
super.inputPlaceholder = 'Message',
super.isTyping = 'is typing...',
super.others = 'others',
super.sendButtonAccessibilityLabel = 'Send',
super.unreadMessagesLabel = 'Unread messages',
});