MemberProfileEntity constructor

MemberProfileEntity({
  1. required String? appId,
  2. String? feedId,
  3. String? authorId,
  4. String? profile,
  5. String? profileBackgroundId,
  6. String? profileOverride,
  7. String? nameOverride,
  8. int? accessibleByGroup,
  9. List<String>? accessibleByMembers,
  10. List<String>? readAccess,
  11. List<MemberMediumContainerEntity>? memberMedia,
})

Implementation

MemberProfileEntity({
  required this.appId,
  this.feedId,
  this.authorId,
  this.profile,
  this.profileBackgroundId,
  this.profileOverride,
  this.nameOverride,
  this.accessibleByGroup,
  this.accessibleByMembers,
  this.readAccess,
  this.memberMedia,
});