SetSecuritySettingsRequest constructor

SetSecuritySettingsRequest({
  1. EmbeddedIframeSettings? embeddedIframe,
  2. bool? enableImpersonation,
})

Implementation

factory SetSecuritySettingsRequest({
  $10.EmbeddedIframeSettings? embeddedIframe,
  $core.bool? enableImpersonation,
}) {
  final $result = create();
  if (embeddedIframe != null) {
    $result.embeddedIframe = embeddedIframe;
  }
  if (enableImpersonation != null) {
    $result.enableImpersonation = enableImpersonation;
  }
  return $result;
}