ChatL10nKo constructor

const ChatL10nKo({
  1. String attachmentButtonAccessibilityLabel = '미디어 보내기',
  2. String emptyChatPlaceholder = '주고받은 메시지가 없습니다',
  3. String fileButtonAccessibilityLabel = '파일',
  4. String inputPlaceholder = '메시지',
  5. String sendButtonAccessibilityLabel = '보내기',
  6. String unreadMessagesLabel = '읽지 않은 메시지',
})

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

Implementation

const ChatL10nKo({
  super.attachmentButtonAccessibilityLabel = '미디어 보내기',
  super.emptyChatPlaceholder = '주고받은 메시지가 없습니다',
  super.fileButtonAccessibilityLabel = '파일',
  super.inputPlaceholder = '메시지',
  super.sendButtonAccessibilityLabel = '보내기',
  super.unreadMessagesLabel = '읽지 않은 메시지',
});