UserListTile constructor

const UserListTile({
  1. Key? key,
  2. required User user,
})

Implementation

const UserListTile({
  super.key,
  required this.user,
});