FDialog.raw constructor
      const
      FDialog.raw({ 
    
- required Widget builder(),
- FDialogStyle style()?,
- Animation<double> ? animation,
- 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.animation,
  this.semanticsLabel,
  this.constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
  super.key,
});