ConvoCard constructor

const ConvoCard({
  1. dynamic key,
  2. required String roomId,
  3. dynamic animation,
  4. dynamic onTap()?,
  5. bool showParents = true,
  6. dynamic trailing,
  7. bool showSelectedIndication = true,
  8. bool showSuggestedMark = false,
})

Implementation

const ConvoCard({
  super.key,
  required this.roomId,
  this.animation,
  this.onTap,
  this.showParents = true,
  this.trailing,
  this.showSelectedIndication = true,
  this.showSuggestedMark = false,
});