userPrivacySettingAllowPrivateVoiceAndVideoNoteMessages property

UserPrivacySettingAllowPrivateVoiceAndVideoNoteMessages? userPrivacySettingAllowPrivateVoiceAndVideoNoteMessages

A privacy setting for managing whether the user can receive voice and video messages in private chats

Implementation

UserPrivacySettingAllowPrivateVoiceAndVideoNoteMessages?
    get userPrivacySettingAllowPrivateVoiceAndVideoNoteMessages {
  if (this is UserPrivacySettingAllowPrivateVoiceAndVideoNoteMessages) {
    return this as UserPrivacySettingAllowPrivateVoiceAndVideoNoteMessages;
  }
  return null;
}