userPrivacySettingAllowChatInvites property

UserPrivacySettingAllowChatInvites? userPrivacySettingAllowChatInvites

A privacy setting for managing whether the user can be invited to chats

Implementation

UserPrivacySettingAllowChatInvites? get userPrivacySettingAllowChatInvites {
  if (this is UserPrivacySettingAllowChatInvites) {
    return this as UserPrivacySettingAllowChatInvites;
  }
  return null;
}