SelectedTile constructor

const SelectedTile({
  1. Key? key,
  2. RxUser? user,
  3. MyUser? myUser,
  4. RxChatContact? contact,
  5. RxChat? chat,
  6. bool selected = false,
  7. List<Widget> subtitle = const [],
  8. void onTap()?,
  9. double darken = 0,
  10. void onAvatarTap(
    1. UserId id
    )? = _defaultAvatarTap,
})

Implementation

const SelectedTile({
  super.key,
  this.user,
  this.myUser,
  this.contact,
  this.chat,
  this.selected = false,
  this.subtitle = const [],
  this.onTap,
  this.darken = 0,
  this.onAvatarTap = _defaultAvatarTap,
});