TextMessageView constructor

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

Implementation

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