DialogConfiguration<T> constructor

const DialogConfiguration<T>({
  1. required WidgetBuilder builder,
  2. bool useRootNavigator = true,
  3. bool barrierDismissible = true,
  4. Color? barrierColor,
  5. String? barrierLabel,
  6. bool useSafeArea = true,
  7. RouteSettings? routeSettings,
  8. Offset? anchorPoint,
  9. TraversalEdgeBehavior? traversalEdgeBehavior,
  10. AlignmentGeometry? alignment,
  11. bool fullScreen = false,
})

Creates a DialogConfiguration.

Implementation

const DialogConfiguration({
  required this.builder,
  this.useRootNavigator = true,
  this.barrierDismissible = true,
  this.barrierColor,
  this.barrierLabel,
  this.useSafeArea = true,
  this.routeSettings,
  this.anchorPoint,
  this.traversalEdgeBehavior,
  this.alignment,
  this.fullScreen = false,
});