ChatBubbleWithoutAvatar constructor

const ChatBubbleWithoutAvatar({
  1. Key? key,
  2. required bool isMe,
  3. required Widget message,
  4. required BoxConstraints constraints,
  5. required Color senderBgColor,
  6. required Color receiverBgColor,
  7. required bool isNextMessageFromSameSender,
  8. required bool pointer,
  9. required Widget ack,
  10. required String time,
  11. required Color timeLabelColor,
  12. required String imgUrl,
  13. required Widget? caption,
  14. required bool showLoadingOverlay,
  15. required double percentage,
  16. required VoidCallback onImageTap,
  17. bool? isAudio,
  18. String? audioSource,
  19. bool? isLoading,
  20. TextStyle? textStyle,
  21. DismissDirectionCallback? onSwipe,
  22. GestureLongPressCallback? onLongPress,
  23. BoxConstraints? imageStyles,
  24. required Widget? messageReply,
  25. required Color? messageReplyBgColor,
  26. required Color? messageReplyBorderColor,
  27. VoidCallback? onPress,
  28. Uint8List? imageBytes,
  29. Widget? name,
})

Implementation

const ChatBubbleWithoutAvatar(
    {super.key,
    required this.isMe,
    required this.message,
    required this.constraints,
    required this.senderBgColor,
    required this.receiverBgColor,
    required this.isNextMessageFromSameSender,
    required this.pointer,
    required this.ack,
    required this.time,
    required this.timeLabelColor,
    required this.imgUrl,
    required this.caption,
    required this.showLoadingOverlay,
    required this.percentage,
    required this.onImageTap,
    this.isAudio,
    this.audioSource,
    this.isLoading,
    this.textStyle,
    this.onSwipe,
    this.onLongPress,
    this.imageStyles,
    required this.messageReply,
    required this.messageReplyBgColor,
    required this.messageReplyBorderColor,
    this.onPress, this.imageBytes,
    this.name});