SecurityDialog constructor

const SecurityDialog({
  1. Key? key,
  2. required SecurityEvent event,
  3. String? title,
  4. String? message,
  5. bool canPop = false,
  6. VoidCallback? onRefresh,
  7. Color? primaryColor,
  8. IconData? icon,
  9. VoidCallback? onDismiss,
})

Implementation

const SecurityDialog({
  super.key,
  required this.event,
  this.title,
  this.message,
  this.canPop = false,
  this.onRefresh,
  this.primaryColor,
  this.icon,
  this.onDismiss,
});