PlatformAlertDialogAction constructor

const PlatformAlertDialogAction({
  1. Key? key,
  2. required Widget child,
  3. required VoidCallback onPressed,
  4. bool isDestructiveAction = false,
  5. bool isDefaultAction = false,
})

Implementation

const PlatformAlertDialogAction({
  Key? key,
  required this.child,
  required this.onPressed,
  this.isDestructiveAction = false,
  this.isDefaultAction = false,
}) : super(key: key);