TextMessageView constructor

const TextMessageView({
  1. Key? key,
  2. required ChatMessageModel chatMessage,
  3. String search = Constants.emptyString,
  4. required bool showChatDeliveryIndicator,
})

Implementation

const TextMessageView({
  super.key,
  required this.chatMessage,
  this.search = Constants.emptyString,
  required this.showChatDeliveryIndicator,
});