ContactTile constructor

const ContactTile({
  1. Key? key,
  2. RxChatContact? contact,
  3. RxUser? user,
  4. MyUser? myUser,
  5. List<Widget> leading = const [],
  6. List<Widget> trailing = const [],
  7. void onTap()?,
  8. bool selected = false,
  9. List<Widget> subtitle = const [],
  10. double darken = 0,
  11. double height = 80,
  12. AvatarRadius radius = AvatarRadius.large,
  13. List<ContextMenuItem>? actions,
  14. bool folded = false,
  15. bool dense = false,
  16. bool preventContextMenu = false,
  17. EdgeInsets? padding,
  18. EdgeInsets margin = const EdgeInsets.fromLTRB(0, 1.5, 0, 1.5),
  19. Widget avatarBuilder(
    1. Widget
    )?,
  20. bool enableContextMenu = true,
})

Implementation

const ContactTile({
  super.key,
  this.contact,
  this.user,
  this.myUser,
  this.leading = const [],
  this.trailing = const [],
  this.onTap,
  this.selected = false,
  this.subtitle = const [],
  this.darken = 0,
  this.height = 80,
  this.radius = AvatarRadius.large,
  this.actions,
  this.folded = false,
  this.dense = false,
  this.preventContextMenu = false,
  this.padding,
  this.margin = const EdgeInsets.fromLTRB(0, 1.5, 0, 1.5),
  Widget Function(Widget)? avatarBuilder,
  this.enableContextMenu = true,
}) : avatarBuilder = avatarBuilder ?? _defaultAvatarBuilder;