CometChatCard constructor

const CometChatCard({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. CometChatAvatar? avatar,
  5. CardStyle? cardStyle,
  6. AvatarStyle? avatarStyle,
  7. String? avatarName,
  8. String? avatarUrl,
  9. Widget? bottomView,
})

Implementation

const CometChatCard({
  super.key,
  this.title,
  this.subtitle,
  this.avatar,
  this.cardStyle,
  this.avatarStyle,
  this.avatarName,
  this.avatarUrl,
  this.bottomView,
});