WebScreen constructor

WebScreen({
  1. Key? key,
  2. required String url,
  3. List<ButtonConfig>? buttons,
  4. String? pageTitle,
  5. bool hasPageTitle = true,
  6. VoidCallback? onLoadFinished,
  7. ActionConfig? action,
})

Implementation

WebScreen({
  super.key,
  required this.url,
  this.logo,
  this.buttons,
  this.pageTitle,
  this.hasPageTitle = true,
  this.onLoadFinished,
  this.action,
});