LoadingConvoCard constructor

const LoadingConvoCard({
  1. dynamic key,
  2. required String roomId,
  3. String? parentRoomId,
  4. dynamic onTap,
  5. dynamic onLongPress,
  6. dynamic onFocusChange,
  7. dynamic subtitle,
  8. dynamic trailing,
  9. bool showParent = true,
})

Implementation

const LoadingConvoCard({
  super.key,
  required this.roomId,
  this.parentRoomId,
  this.onTap,
  this.onLongPress,
  this.onFocusChange,
  this.subtitle,
  this.trailing,
  this.showParent = true,
});