CustomAlertActions constructor

const CustomAlertActions({
  1. Key? key,
  2. double topSpacing = 20,
  3. double bottomSpacing = 0,
  4. MainAxisAlignment alignment = MainAxisAlignment.end,
  5. List<Widget>? actions,
  6. double actionSpacing = 20,
})

Implementation

const CustomAlertActions({
  super.key,
  this.topSpacing = 20,
  this.bottomSpacing = 0,
  this.alignment = MainAxisAlignment.end,
  this.actions,
  this.actionSpacing = 20,
});