showCDialog<T> method

Future<T?> showCDialog<T>({
  1. required WidgetBuilder builder,
  2. Cancellable? cancellable,
  3. bool barrierDismissible = true,
  4. Color? barrierColor = Colors.black54,
  5. String? barrierLabel,
  6. bool useSafeArea = true,
  7. bool useRootNavigator = true,
  8. RouteSettings? routeSettings,
  9. Offset? anchorPoint,
})

Implementation

Future<T?> showCDialog<T>({
  required WidgetBuilder builder,
  Cancellable? cancellable,
  bool barrierDismissible = true,
  Color? barrierColor = Colors.black54,
  String? barrierLabel,
  bool useSafeArea = true,
  bool useRootNavigator = true,
  RouteSettings? routeSettings,
  Offset? anchorPoint,
  // TraversalEdgeBehavior? traversalEdgeBehavior,
}) =>
    d.showCDialog(
      builder: builder,
      context: this,
      cancellable: cancellable,
      barrierDismissible: barrierDismissible,
      barrierColor: barrierColor,
      barrierLabel: barrierLabel,
      useSafeArea: useSafeArea,
      useRootNavigator: useRootNavigator,
      routeSettings: routeSettings,
      anchorPoint: anchorPoint,
      // traversalEdgeBehavior: traversalEdgeBehavior,
    );