PlatformWebViewWidgetCreationParams constructor

const PlatformWebViewWidgetCreationParams({
  1. Key? key,
  2. required PlatformWebViewController controller,
  3. TextDirection layoutDirection = TextDirection.ltr,
  4. Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers = const <Factory<OneSequenceGestureRecognizer>>{},
})

Used by the platform implementation to create a new PlatformWebViewWidget.

Implementation

const PlatformWebViewWidgetCreationParams({
  this.key,
  required this.controller,
  this.layoutDirection = TextDirection.ltr,
  this.gestureRecognizers = const <Factory<OneSequenceGestureRecognizer>>{},
});