showCCupertinoDialog<T> method
Future<T?>
showCCupertinoDialog<T>({
- required WidgetBuilder builder,
- Cancellable? cancellable,
- String? barrierLabel,
- bool barrierDismissible = false,
- RouteSettings? routeSettings,
- 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,
);