WebViewConfig constructor

const WebViewConfig({
  1. Color? backgroundColor = Colors.transparent,
  2. int? height,
  3. int? width,
  4. WebViewGravity? gravity = WebViewGravity.center,
})

Implementation

const WebViewConfig({
  this.backgroundColor = Colors.transparent,
  this.height,
  this.width,
  this.gravity = WebViewGravity.center,
});