ChatL10nPl constructor

const ChatL10nPl({
  1. String attachmentButtonAccessibilityLabel = 'Wyślij multimedia',
  2. String emptyChatPlaceholder = 'Tu jeszcze nie ma wiadomości',
  3. String fileButtonAccessibilityLabel = 'Plik',
  4. String inputPlaceholder = 'Napisz wiadomość',
  5. String sendButtonAccessibilityLabel = 'Wyślij',
})

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

Implementation

const ChatL10nPl({
  String attachmentButtonAccessibilityLabel = 'Wyślij multimedia',
  String emptyChatPlaceholder = 'Tu jeszcze nie ma wiadomości',
  String fileButtonAccessibilityLabel = 'Plik',
  String inputPlaceholder = 'Napisz wiadomość',
  String sendButtonAccessibilityLabel = 'Wyślij',
}) : super(
        attachmentButtonAccessibilityLabel:
            attachmentButtonAccessibilityLabel,
        emptyChatPlaceholder: emptyChatPlaceholder,
        fileButtonAccessibilityLabel: fileButtonAccessibilityLabel,
        inputPlaceholder: inputPlaceholder,
        sendButtonAccessibilityLabel: sendButtonAccessibilityLabel,
      );