addUserScript method

Future<void> addUserScript({
  1. required UserScript userScript,
})

Injects the specified userScript into the webpage’s content.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • userScript: all platforms

Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.

Implementation

Future<void> addUserScript({required UserScript userScript}) =>
    platform.addUserScript(userScript: userScript);