ConversationShimmer constructor

const ConversationShimmer({
  1. Key? key,
  2. int itemCount = 8,
  3. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 16),
})

Implementation

const ConversationShimmer({
  super.key,
  this.itemCount = 8,
  this.padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 16),
});