RxGo constructor

const RxGo({
  1. Key? key,
  2. required String url,
  3. Map<String, String>? headers = const {},
  4. dynamic arguments,
  5. bool canClose = false,
  6. bool fullscreen = false,
  7. bool showControl = true,
  8. dynamic onRouteChange(
    1. Uri? uri
    )?,
  9. bool hideProtected = false,
  10. bool hideLink = false,
  11. bool cacheEnabled = false,
  12. String? body,
  13. bool? enableZoom,
  14. Color backgroundColor = Colors.white,
  15. WebViewCookieManager? cookieManager,
})

Implementation

const RxGo({
  Key? key,
  // this.onReady,

  required this.url,
  this.headers = const {},
  this.arguments,
  this.canClose = false,
  this.fullscreen = false,
  this.showControl = true,
  this.onRouteChange,
  this.hideProtected = false,
  this.hideLink = false,
  this.cacheEnabled = false,
  this.body,
  this.enableZoom,
  this.backgroundColor = Colors.white,
  this.cookieManager,
}) : super(key: key);