userPrivacySettingShowProfilePhoto property

UserPrivacySettingShowProfilePhoto? userPrivacySettingShowProfilePhoto

A privacy setting for managing whether the user's profile photo is visible

Implementation

UserPrivacySettingShowProfilePhoto? get userPrivacySettingShowProfilePhoto {
  if (this is UserPrivacySettingShowProfilePhoto) {
    return this as UserPrivacySettingShowProfilePhoto;
  }
  return null;
}