debugLoggingSettings property

DebugLoggingSettings debugLoggingSettings
getter/setter pair

Debug settings used by PlatformInAppWebViewWidget, PlatformHeadlessInAppWebView and PlatformInAppBrowser. The default value excludes the PlatformWebViewCreationParams.onScrollChanged, PlatformWebViewCreationParams.onOverScrolled and PlatformWebViewCreationParams.onReceivedIcon events.

Implementation

static DebugLoggingSettings debugLoggingSettings = DebugLoggingSettings(
  maxLogMessageLength: 1000,
  excludeFilter: [
    RegExp(r"onScrollChanged"),
    RegExp(r"onOverScrolled"),
    RegExp(r"onReceivedIcon"),
  ],
);