ChatL10nEn constructor

const ChatL10nEn({
  1. String attachmentButtonAccessibilityLabel = 'Send media',
  2. String emptyChatPlaceholder = 'No messages here yet',
  3. String fileButtonAccessibilityLabel = 'File',
  4. String inputPlaceholder = 'Message',
  5. String sendButtonAccessibilityLabel = 'Send',
  6. 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.attachmentButtonAccessibilityLabel = 'Send media',
  super.emptyChatPlaceholder = 'No messages here yet',
  super.fileButtonAccessibilityLabel = 'File',
  super.inputPlaceholder = 'Message',
  super.sendButtonAccessibilityLabel = 'Send',
  super.unreadMessagesLabel = 'Unread messages',
});