userPrivacySettingAllowPeerToPeerCalls property

UserPrivacySettingAllowPeerToPeerCalls? userPrivacySettingAllowPeerToPeerCalls

A privacy setting for managing whether peer-to-peer connections can be used for calls

Implementation

UserPrivacySettingAllowPeerToPeerCalls?
    get userPrivacySettingAllowPeerToPeerCalls {
  if (this is UserPrivacySettingAllowPeerToPeerCalls) {
    return this as UserPrivacySettingAllowPeerToPeerCalls;
  }
  return null;
}