showCCupertinoDialog<T> method

Future<T?> showCCupertinoDialog<T>({
  1. required WidgetBuilder builder,
  2. Cancellable? cancellable,
  3. String? barrierLabel,
  4. bool useRootNavigator = true,
  5. bool barrierDismissible = false,
  6. RouteSettings? routeSettings,
  7. Offset? anchorPoint,
})

Implementation

Future<T?> showCCupertinoDialog<T>({
  required WidgetBuilder builder,
  Cancellable? cancellable,
  String? barrierLabel,
  bool useRootNavigator = true,
  bool barrierDismissible = false,
  RouteSettings? routeSettings,
  Offset? anchorPoint,
}) =>
    d.showCCupertinoDialog(
      context: this,
      builder: builder,
      cancellable: cancellable,
      barrierDismissible: barrierDismissible,
      barrierLabel: barrierLabel,
      useRootNavigator: useRootNavigator,
      routeSettings: routeSettings,
      anchorPoint: anchorPoint,
    );