ChatL10nUk constructor

const ChatL10nUk({
  1. String attachmentButtonAccessibilityLabel = 'Надіслати медіа',
  2. String emptyChatPlaceholder = 'Повідомлень ще немає',
  3. String fileButtonAccessibilityLabel = 'Файл',
  4. String inputPlaceholder = 'Повідомлення',
  5. String sendButtonAccessibilityLabel = 'Надіслати',
  6. String unreadMessagesLabel = 'Непрочитанi повідомлення',
})

Creates Ukrainian l10n. Use this constructor if you want to override only a couple of properties, otherwise create a new class which extends ChatL10n.

Implementation

const ChatL10nUk({
  super.attachmentButtonAccessibilityLabel = 'Надіслати медіа',
  super.emptyChatPlaceholder = 'Повідомлень ще немає',
  super.fileButtonAccessibilityLabel = 'Файл',
  super.inputPlaceholder = 'Повідомлення',
  super.sendButtonAccessibilityLabel = 'Надіслати',
  super.unreadMessagesLabel = 'Непрочитанi повідомлення',
});