FDialog.raw constructor

const FDialog.raw({
  1. required Widget builder(
    1. BuildContext,
    2. FDialogStyle
    ),
  2. FDialogStyle style(
    1. FDialogStyle
    )?,
  3. Animation<double>? animation,
  4. String? semanticsLabel,
  5. BoxConstraints constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
  6. Key? key,
})

Creates a FDialog with a custom builder.

Implementation

const FDialog.raw({
  required this.builder,
  this.style,
  this.animation,
  this.semanticsLabel,
  this.constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
  super.key,
});