DialogAction constructor
const
DialogAction({
- required String label,
- required VoidCallback onAction,
- IconData? icon,
- bool isPrimary = false,
- bool disabled = false,
Implementation
const DialogAction({
required this.label,
required this.onAction,
this.icon,
this.isPrimary = false,
this.disabled = false,
});