getSettings method

Future<InAppWebViewSettings?> getSettings()

Gets the current WebView settings. Returns null if it wasn't able to get them.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS
  • Web

Implementation

Future<InAppWebViewSettings?> getSettings() {
  throw UnimplementedError(
      'getSettings is not implemented on the current platform');
}