GajModelWebView constructor

const GajModelWebView({
  1. Key? key,
  2. required String url,
  3. double? width,
  4. double? height,
  5. bool bypass = false,
  6. bool horizontalScroll = false,
  7. bool verticalScroll = false,
})

Implementation

const GajModelWebView({
  Key? key,
  required this.url,
  this.width,
  this.height,
  this.bypass = false,
  this.horizontalScroll = false,
  this.verticalScroll = false,
}) : super(key: key);