DialogProps constructor
const
DialogProps({
- String? id,
- bool isOpen = false,
- String? title,
- required List<
Widget> content, - List<
Widget> ? actions, - bool showCloseButton = true,
- void onClose()?,
- double maxWidth = 500,
- bool barrierDismissible = true,
- bool escapeCloses = true,
- bool focusTrap = true,
- bool restoreFocus = true,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
Implementation
const DialogProps({
this.id,
this.isOpen = false,
this.title,
required this.content,
this.actions,
this.showCloseButton = true,
this.onClose,
this.maxWidth = 500,
this.barrierDismissible = true,
this.escapeCloses = true,
this.focusTrap = true,
this.restoreFocus = true,
this.styles,
this.decoration,
});