DefaultPublicProfileScreen constructor

const DefaultPublicProfileScreen({
  1. Key? key,
  2. String? uid,
  3. User? user,
  4. bool chatButton = true,
  5. bool likeButton = true,
  6. bool bookmarkButton = true,
  7. bool reportButton = true,
  8. bool blockButton = true,
  9. bool shareButton = true,
})

Implementation

const DefaultPublicProfileScreen({
  super.key,
  this.uid,
  this.user,
  this.chatButton = true,
  this.likeButton = true,
  this.bookmarkButton = true,
  this.reportButton = true,
  this.blockButton = true,
  this.shareButton = true,
});