InngageWebViewProperties constructor

InngageWebViewProperties({
  1. Color backgroundColor = Colors.white,
  2. Color appBarColor = Colors.blue,
  3. Color loaderColor = Colors.blue,
  4. Text appBarText = const Text('Webview'),
  5. bool withZoom = true,
  6. bool withLocalStorage = true,
  7. bool debuggingEnabled = false,
  8. bool withJavascript = true,
  9. Widget? customLoading,
})

Implementation

InngageWebViewProperties({
  this.backgroundColor = Colors.white,
  this.appBarColor = Colors.blue,
  this.loaderColor = Colors.blue,
  this.appBarText = const Text('Webview'),
  this.withZoom = true,
  this.withLocalStorage = true,
  this.debuggingEnabled = false,
  this.withJavascript = true,
  this.customLoading,
});