ChatL10nEs constructor

const ChatL10nEs({
  1. String attachmentButtonAccessibilityLabel = 'Enviar multimedia',
  2. String emptyChatPlaceholder = 'Aún no hay mensajes',
  3. String fileButtonAccessibilityLabel = 'Archivo',
  4. String inputPlaceholder = 'Mensaje',
  5. String sendButtonAccessibilityLabel = 'Enviar',
})

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

Implementation

const ChatL10nEs({
  String attachmentButtonAccessibilityLabel = 'Enviar multimedia',
  String emptyChatPlaceholder = 'Aún no hay mensajes',
  String fileButtonAccessibilityLabel = 'Archivo',
  String inputPlaceholder = 'Mensaje',
  String sendButtonAccessibilityLabel = 'Enviar',
}) : super(
        attachmentButtonAccessibilityLabel:
            attachmentButtonAccessibilityLabel,
        emptyChatPlaceholder: emptyChatPlaceholder,
        fileButtonAccessibilityLabel: fileButtonAccessibilityLabel,
        inputPlaceholder: inputPlaceholder,
        sendButtonAccessibilityLabel: sendButtonAccessibilityLabel,
      );