ChatL10n constructor

const ChatL10n({
  1. required String and,
  2. required String attachmentButtonAccessibilityLabel,
  3. required String emptyChatPlaceholder,
  4. required String fileButtonAccessibilityLabel,
  5. required String inputPlaceholder,
  6. required String isTyping,
  7. required String others,
  8. required String sendButtonAccessibilityLabel,
  9. required String unreadMessagesLabel,
})

Creates a new chat l10n based on provided copy.

Implementation

const ChatL10n({
  required this.and,
  required this.attachmentButtonAccessibilityLabel,
  required this.emptyChatPlaceholder,
  required this.fileButtonAccessibilityLabel,
  required this.inputPlaceholder,
  required this.isTyping,
  required this.others,
  required this.sendButtonAccessibilityLabel,
  required this.unreadMessagesLabel,
});