ContactMessageView constructor

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

Implementation

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