OrganizationMembershipPublicUserData constructor

OrganizationMembershipPublicUserData({
  1. required String userId,
  2. required String? firstName,
  3. required String? lastName,
  4. required String? profileImageUrl,
  5. required String imageUrl,
  6. required bool hasImage,
  7. String? identifier,
})

Returns a new OrganizationMembershipPublicUserData instance.

Implementation

OrganizationMembershipPublicUserData({
  required this.userId,
  required this.firstName,
  required this.lastName,
  required this.profileImageUrl,
  required this.imageUrl,
  required this.hasImage,
  this.identifier,
});