ChatL10nUk constructor

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

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

Implementation

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