MemberTile constructor

const MemberTile({
  1. Key? key,
  2. RxUser? user,
  3. MyUser? myUser,
  4. bool? inCall,
  5. void onTap()?,
  6. Future<void> onKick()?,
  7. void onCall()?,
})

Implementation

const MemberTile({
  super.key,
  this.user,
  this.myUser,
  this.inCall,
  this.onTap,
  this.onKick,
  this.onCall,
});