show method

  1. @override
OverlayCompleter<T?> show(
  1. BuildContext context
)
override

Actually presents the overlay using this configuration's mechanism.

Implementation

@override
OverlayCompleter<T?> show(BuildContext context) {
  // ignore: deprecated_member_use_from_same_package
  return openDrawerOverlay<T>(
    context: context,
    anchor: anchor,
    builder: builder,
    position: position,
    expands: expands,
    draggable: draggable,
    barrierDismissible: barrierDismissible,
    backdropBuilder: backdropBuilder,
    useSafeArea: useSafeArea,
    showDragHandle: showDragHandle,
    borderRadius: borderRadius,
    dragHandleSize: dragHandleSize,
    transformBackdrop: transformBackdrop,
    surfaceOpacity: surfaceOpacity,
    surfaceBlur: surfaceBlur,
    barrierColor: barrierColor,
    animationController: animationController,
    autoOpen: autoOpen,
    constraints: constraints,
    alignment: alignment,
  );
}