ChatL10nRu constructor

const ChatL10nRu({
  1. String attachmentButtonAccessibilityLabel = 'Отправить медиа',
  2. String emptyChatPlaceholder = 'Пока что у вас нет сообщений',
  3. String fileButtonAccessibilityLabel = 'Файл',
  4. String inputPlaceholder = 'Сообщение',
  5. String sendButtonAccessibilityLabel = 'Отправить',
})

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

Implementation

const ChatL10nRu({
  String attachmentButtonAccessibilityLabel = 'Отправить медиа',
  String emptyChatPlaceholder = 'Пока что у вас нет сообщений',
  String fileButtonAccessibilityLabel = 'Файл',
  String inputPlaceholder = 'Сообщение',
  String sendButtonAccessibilityLabel = 'Отправить',
}) : super(
        attachmentButtonAccessibilityLabel:
            attachmentButtonAccessibilityLabel,
        emptyChatPlaceholder: emptyChatPlaceholder,
        fileButtonAccessibilityLabel: fileButtonAccessibilityLabel,
        inputPlaceholder: inputPlaceholder,
        sendButtonAccessibilityLabel: sendButtonAccessibilityLabel,
      );