ActionDialog constructor

const ActionDialog({
  1. Key? key,
  2. Widget? title,
  3. required Widget content,
  4. EdgeInsetsGeometry? padding,
  5. List<Widget> actions = const [],
  6. ModalBoxOptions? options,
  7. BoxConstraints? constraints,
  8. double actionsMaxHeight = 45,
  9. Color? dividerColor,
  10. EdgeInsets? dividerMargin,
  11. double dividerThickness = 1,
})

Implementation

const ActionDialog({
  super.key,
  this.title,
  required this.content,
  this.padding,
  this.actions = const [],
  this.options,
  this.constraints,
  this.actionsMaxHeight = 45,
  this.dividerColor,
  this.dividerMargin,
  this.dividerThickness = 1,
});