UserProfileModel constructor

UserProfileModel({
  1. String id = '',
  2. required String username,
  3. required String email,
  4. String? bio,
  5. String? avatarUrl,
  6. UserRole? role,
  7. AccountVerificationStatus? verificationStatus,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
})

Implementation

UserProfileModel({
  this.id = '',
  required this.username,
  required this.email,
  this.bio,
  this.avatarUrl,
  this.role,
  this.verificationStatus,
  this.createdAt,
  this.updatedAt,
});