OptimusChatBubble constructor

const OptimusChatBubble({
  1. Key? key,
  2. required OptimusMessage message,
  3. required bool isUserNameVisible,
  4. required bool isDateVisible,
  5. required FormatTime formatTime,
  6. required FormatDate formatDate,
  7. required Widget sending,
  8. required Widget sent,
  9. required Widget error,
})

Implementation

const OptimusChatBubble({
  super.key,
  required this.message,
  required this.isUserNameVisible,
  required this.isDateVisible,
  required this.formatTime,
  required this.formatDate,
  required this.sending,
  required this.sent,
  required this.error,
});