NZDialogAction constructor

const NZDialogAction({
  1. required String label,
  2. VoidCallback? onPressed,
  3. bool isDestructive = false,
  4. bool isPrimary = false,
  5. Color? color,
})

Implementation

const NZDialogAction({
  required this.label,
  this.onPressed,
  this.isDestructive = false,
  this.isPrimary = false,
  this.color,
});