show static method

Future<void> show(
  1. BuildContext context,
  2. Widget child
)

Implementation

static Future<void> show(
  BuildContext context,
  Widget child,
) async {
  await Trace(
    path: sheetPath,
    traceRoute: TraceRoute.popup(),
    args: SheetRouteParams(child: child),
  ).push(context);
}