SeniorModalAction constructor

SeniorModalAction({
  1. required String label,
  2. required VoidCallback action,
  3. IconData? icon,
  4. bool danger = false,
  5. bool busy = false,
  6. String? busyMessage,
})

Implementation

SeniorModalAction({
  required this.label,
  required this.action,
  this.icon,
  this.danger = false,
  this.busy = false,
  this.busyMessage,
});