StacWebView constructor

const StacWebView({
  1. required String url,
  2. JavaScriptMode? javaScriptMode,
  3. String? backgroundColor,
  4. String? userAgent,
  5. bool? enableZoom,
  6. TextDirection? layoutDirection,
})

Creates a StacWebView with the given configuration.

Implementation

const StacWebView({
  required this.url,
  this.javaScriptMode,
  this.backgroundColor,
  this.userAgent,
  this.enableZoom,
  this.layoutDirection,
});