ShimmerChatBubble constructor

const ShimmerChatBubble({
  1. Key? key,
  2. bool isSender = false,
  3. double width = 220,
  4. double height = 48,
  5. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
  6. bool enabled = true,
})

Implementation

const ShimmerChatBubble({
  super.key,
  this.isSender = false,
  this.width = 220,
  this.height = 48,
  this.padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 6),
  this.enabled = true,
});