WebAuthenticationPopup constructor

const WebAuthenticationPopup({
  1. required String windowName,
  2. required int width,
  3. required int height,
  4. bool? shouldCenter,
  5. int? left,
  6. int? top,
  7. bool? fullscreen,
  8. bool? location,
  9. bool? menubar,
  10. bool? resizable,
  11. bool? scrollbars,
  12. bool? status,
  13. bool? titlebar,
  14. bool? toolbar,
  15. Map<String, String> additionalParams = const {},
})

Implementation

const WebAuthenticationPopup({
  required this.windowName,
  required this.width,
  required this.height,
  this.shouldCenter,
  this.left,
  this.top,
  this.fullscreen,
  this.location,
  this.menubar,
  this.resizable,
  this.scrollbars,
  this.status,
  this.titlebar,
  this.toolbar,
  this.additionalParams = const {},
}) : super._();