ActionDialog constructor
const
ActionDialog({
- Key? key,
- Widget? title,
- required Widget content,
- EdgeInsetsGeometry? padding,
- List<
Widget> actions = const [], - ModalBoxOptions? options,
- BoxConstraints? constraints,
- double actionsMaxHeight = 45,
- Color? dividerColor,
- EdgeInsets? dividerMargin,
- 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,
});