RecentChatTile constructor

const RecentChatTile(
  1. RxChat rxChat, {
  2. Key? key,
  3. UserId? me,
  4. bool blocked = false,
  5. bool? selected = false,
  6. bool invertible = true,
  7. List<Widget>? trailing,
  8. FutureOr<RxUser?> getUser(
    1. UserId id
    )?,
  9. bool inContacts()?,
  10. void onLeave()?,
  11. void onHide(
    1. bool
    )?,
  12. void onDrop()?,
  13. void onJoin()?,
  14. void onMute()?,
  15. void onUnmute()?,
  16. void onFavorite()?,
  17. void onUnfavorite()?,
  18. void onSelect()?,
  19. void onContact(
    1. bool
    )?,
  20. void onTap()?,
  21. void onDismissed()?,
  22. Widget avatarBuilder(
    1. Widget
    )?,
  23. bool enableContextMenu = true,
  24. bool? hasCall,
  25. Future<void> onPerformDrop(
    1. PerformDropEvent
    )?,
})

Implementation

const RecentChatTile(
  this.rxChat, {
  super.key,
  this.me,
  this.blocked = false,
  this.selected = false,
  this.invertible = true,
  this.trailing,
  this.getUser,
  this.inContacts,
  this.onLeave,
  this.onHide,
  this.onDrop,
  this.onJoin,
  this.onMute,
  this.onUnmute,
  this.onFavorite,
  this.onUnfavorite,
  this.onSelect,
  this.onContact,
  this.onTap,
  this.onDismissed,
  Widget Function(Widget)? avatarBuilder,
  this.enableContextMenu = true,
  this.hasCall,
  this.onPerformDrop,
}) : avatarBuilder = avatarBuilder ?? _defaultAvatarBuilder;