WebViewResultUrl constructor

const WebViewResultUrl({
  1. required bool fullsize,
  2. required bool fullscreen,
  3. required bool sameOrigin,
  4. int? queryId,
  5. required String url,
})

Web View Result Url constructor.

Implementation

const WebViewResultUrl({
  required this.fullsize,
  required this.fullscreen,
  required this.sameOrigin,
  this.queryId,
  required this.url,
}) : super._();