ChatL10nPt constructor

const ChatL10nPt({
  1. String attachmentButtonAccessibilityLabel = 'Envia mídia',
  2. String emptyChatPlaceholder = 'Ainda não há mensagens aqui',
  3. String fileButtonAccessibilityLabel = 'Arquivo',
  4. String inputPlaceholder = 'Mensagem',
  5. String sendButtonAccessibilityLabel = 'Enviar',
  6. String unreadMessagesLabel = 'Mensagens não lidas',
})

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

Implementation

const ChatL10nPt({
  super.attachmentButtonAccessibilityLabel = 'Envia mídia',
  super.emptyChatPlaceholder = 'Ainda não há mensagens aqui',
  super.fileButtonAccessibilityLabel = 'Arquivo',
  super.inputPlaceholder = 'Mensagem',
  super.sendButtonAccessibilityLabel = 'Enviar',
  super.unreadMessagesLabel = 'Mensagens não lidas',
});