PhoenixWebview constructor

const PhoenixWebview({
  1. Key? key,
  2. required String title,
  3. required String url,
  4. bool isForRegistration = false,
  5. bool? isShowRefresh,
  6. String? userAgent,
  7. Widget? bottomNavigationBar,
  8. Widget? refreshIcons,
  9. String? customJavaScripts,
  10. Function? navigationDelegate,
  11. List<String>? jsToRun,
  12. Widget? noInternetHandler,
  13. Color? toolbarColor,
  14. List<String>? specialContainUrl,
  15. bool showAppBar = true,
  16. bool enableClearCacheInitDispose = false,
})

Implementation

const PhoenixWebview({
  Key? key,
  required this.title,
  required this.url,
  this.isForRegistration = false,
  this.isShowRefresh,
  this.userAgent,
  this.bottomNavigationBar,
  this.refreshIcons,
  this.customJavaScripts,
  this.navigationDelegate,
  this.jsToRun,
  this.noInternetHandler,
  this.toolbarColor,
  this.specialContainUrl,
  this.showAppBar = true,
  this.enableClearCacheInitDispose = false,
}) : super(key: key);