CustomShowDialog constructor

CustomShowDialog({
  1. required BuildContext context,
  2. required Widget builder(),
  3. bool barrierDismissible = false,
  4. Offset? anchorOffset,
  5. Color? barrierColor,
  6. String? barrierLabel,
  7. RouteSettings? routeSettings,
  8. bool useSafeArea = true,
  9. bool useRootNavigator = true,
  10. bool? maintainState,
  11. TraversalEdgeBehavior? traversalEdgeBehavior,
})

Implementation

CustomShowDialog({
  required this.context,
  required this.builder,
  this.barrierDismissible = false,
  this.anchorOffset,
  this.barrierColor,
  this.barrierLabel,
  this.routeSettings,
  this.useSafeArea = true,
  this.useRootNavigator = true,
  this.maintainState,
  this.traversalEdgeBehavior,
});