MessageWidget constructor
      const
      MessageWidget({})
     
    
Creates a MessageWidget.
All color parameters are required to ensure consistent theming.
Implementation
const MessageWidget({
  Key? key,
  required this.message,
  required this.senderColor,
  required this.receiverColor,
  required this.inactiveAudioSliderColor,
  required this.activeAudioSliderColor,
  this.messageContainerTextStyle,
  this.sendDateTextStyle,
}) : super(key: key);