BubbleNormalImage constructor

const BubbleNormalImage({
  1. Key? key,
  2. required String id,
  3. required Widget image,
  4. double bubbleRadius = BUBBLE_RADIUS_IMAGE,
  5. bool isSender = true,
  6. Color color = Colors.white70,
  7. bool tail = true,
  8. bool sent = false,
  9. bool delivered = false,
  10. bool seen = false,
  11. void onTap()?,
})

Implementation

const BubbleNormalImage({
  Key? key,
  required this.id,
  required this.image,
  this.bubbleRadius = BUBBLE_RADIUS_IMAGE,
  this.isSender = true,
  this.color = Colors.white70,
  this.tail = true,
  this.sent = false,
  this.delivered = false,
  this.seen = false,
  this.onTap,
}) : super(key: key);