DocumentMessageView constructor

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

Implementation

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