userPrivacySettingShowStatus property

UserPrivacySettingShowStatus? userPrivacySettingShowStatus

A privacy setting for managing whether the user's online status is visible

Implementation

UserPrivacySettingShowStatus? get userPrivacySettingShowStatus {
  if (this is UserPrivacySettingShowStatus) {
    return this as UserPrivacySettingShowStatus;
  }
  return null;
}