PlatformWebViewEnvironment.static constructor

PlatformWebViewEnvironment.static()

Creates a new PlatformWebViewEnvironment to access static methods.

Implementation

factory PlatformWebViewEnvironment.static() {
  assert(
    InAppWebViewPlatform.instance != null,
    'A platform implementation for `flutter_inappwebview_forge` has not been set. Please '
    'ensure that an implementation of `InAppWebViewPlatform` has been set to '
    '`InAppWebViewPlatform.instance` before use. For unit testing, '
    '`InAppWebViewPlatform.instance` can be set with your own test implementation.',
  );
  final PlatformWebViewEnvironment webViewEnvironment = InAppWebViewPlatform
      .instance!
      .createPlatformWebViewEnvironmentStatic();
  PlatformInterface.verify(webViewEnvironment, _token);
  return webViewEnvironment;
}