initialSettings property

  1. @SupportedPlatforms.new(platforms: [IOSPlatform(), MacOSPlatform()])
WebAuthenticationSessionSettings? get initialSettings

Initial settings.

Officially Supported Platforms/Implementations:

  • iOS WKWebView
  • macOS WKWebView

Use the PlatformWebAuthenticationSession.isPropertySupported method to check if this property is supported at runtime.

Implementation

@SupportedPlatforms(platforms: [IOSPlatform(), MacOSPlatform()])
WebAuthenticationSessionSettings? get initialSettings =>
    throw UnimplementedError(
      'initialSettings is not implemented on the current platform',
    );