PublicUserProfile constructor

const PublicUserProfile({
  1. required String clerkUserId,
  2. String? displayName,
  3. String? avatarUrl,
  4. String? bio,
  5. String? websiteUrl,
  6. bool hideComments = false,
  7. String createdAt = '',
  8. String updatedAt = '',
})

Implementation

const PublicUserProfile({
  required this.clerkUserId,
  this.displayName,
  this.avatarUrl,
  this.bio,
  this.websiteUrl,
  this.hideComments = false,
  this.createdAt = '',
  this.updatedAt = '',
});