FDialog.raw constructor
const
FDialog.raw({
- required Widget builder(),
- FDialogStyle? style,
- String? semanticsLabel,
- BoxConstraints constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
- Key? key,
Creates a FDialog with a custom builder.
Implementation
const FDialog.raw({
required this.builder,
this.style,
this.semanticsLabel,
this.constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
super.key,
});