MemberProfileModel constructor

MemberProfileModel({
  1. required String documentID,
  2. required String appId,
  3. String? feedId,
  4. String? authorId,
  5. String? profile,
  6. MemberMediumModel? profileBackground,
  7. String? profileOverride,
  8. String? nameOverride,
  9. MemberProfileAccessibleByGroup? accessibleByGroup,
  10. List<String>? accessibleByMembers,
  11. List<String>? readAccess,
  12. List<MemberMediumContainerModel>? memberMedia,
})

Implementation

MemberProfileModel({
  required this.documentID,
  required this.appId,
  this.feedId,
  this.authorId,
  this.profile,
  this.profileBackground,
  this.profileOverride,
  this.nameOverride,
  this.accessibleByGroup,
  this.accessibleByMembers,
  this.readAccess,
  this.memberMedia,
});