CLDialogButton constructor

const CLDialogButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback? onPressed,
  4. IconData? icon,
  5. CLDialogButtonTone tone = CLDialogButtonTone.primary,
  6. bool autofocus = false,
})

Implementation

const CLDialogButton({
  super.key,
  required this.label,
  required this.onPressed,
  this.icon,
  this.tone = CLDialogButtonTone.primary,
  this.autofocus = false,
});