CupertinoDialogAction constructor
- Key? key,
- VoidCallback? onPressed,
- bool isDefaultAction = false,
- bool isDestructiveAction = false,
- TextStyle? textStyle,
- MouseCursor? mouseCursor,
- required Widget child,
Creates an action for an iOS-style dialog.
Implementation
const CupertinoDialogAction({
super.key,
this.onPressed,
this.isDefaultAction = false,
this.isDestructiveAction = false,
this.textStyle,
this.mouseCursor,
required this.child,
});